Search:

Type: Posts; User: vixez

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    1,193

    'Smart' Transparency on bitmaps

    Hello,
    I'm working on a program that overlays bitmaps and they require transparency.
    I know I can use MakeTransparent to make a certain color transparent but it's giving very ugly results.
    ...
  2. Thread: Sockets closing

    by vixez
    Replies
    1
    Views
    592

    VS 2010 Sockets closing

    Hey,
    I have a small problem with sockets (I'm new to sockets).
    Below is the code I'm using.
    The problem is that when the client closes, the server closes aswell. How do I stop it from doing that?...
  3. Thread: USB Button

    by vixez
    Replies
    5
    Views
    1,990

    VS 2010 Re: USB Button

    Sorry, I think I didnt explain properly.
    I want two physical buttons connected to a PC by USB or any other means.
    One has the function of OK, the other of Cancel.
    There is no keyboard or mouse...
  4. Thread: USB Button

    by vixez
    Replies
    5
    Views
    1,990

    VS 2010 USB Button

    Hey,
    I'm wondering if there are any external buttons I can control with VB.NET.

    I want a Ok and Cancel button that the user can physically press.
    These are the only commands required to interact...
  5. Replies
    3
    Views
    3,743

    VS 2010 Sessions variables getting lost

    Hey,
    I've spend ages looking into the problem, but I cant find it.

    This is my page code


    Protected Sub btnLogin_Click(sender As Object, e As EventArgs) Handles btnLogin.Click
    ...
  6. Replies
    0
    Views
    548

    VS 2010 Speech Dication stops after one time

    Hey,
    I want to use speech-to-text in my application, but for some reason after dictating one thing and it the Windows Speech toolbar (top of screen) goes back to "Listening" it doesnt input anything...
  7. Replies
    1
    Views
    527

    VS 2010 Reading Wikipedia

    Hello,
    I've search high and low but I can't find anything.
    I want my app to be able to search Wikipedia and display the first paragraph of the article.

    Can someone put me on the right track?
  8. Replies
    3
    Views
    819

    VS 2010 Re: SQL Server "File already in use"

    Fixed it.
    I copied the connection string from ASP

    Data Source=PC3\SQLEXPRESS;Initial Catalog="C:\PROGRAM FILES\MICROSOFT SQL SERVER\MSSQL10_50.SQLEXPRESS\MSSQL\DATA\ZAPFI4SQL - KOPIE -...
  9. Replies
    3
    Views
    819

    VS 2010 Re: SQL Server "File already in use"

    I am using an sql connection (pc3\sqlexpress.C:\....dbo)

    But in VB.NET I have to choose a local file, it doesn't show me the servers (and corresponding available databases) like it does in ASP.
    ...
  10. Replies
    3
    Views
    819

    VS 2010 [RESOLVED] SQL Server "File already in use"

    Hey,
    I have a database is SQL Server 2008 Express.
    I have added this database to an ASP.NET project, now I want to add the same database to a VB.NET project, however, when I try to set it up it...
  11. VS 2010 Re: [SOLVED] AddHandler in AddHandler and getting controls

    Well, when I clicked a certain LinkButton it was supposed to create new objects in a panel, including a button.
    Problem was, when the button was clicked the page got refreshed and the controls were...
  12. Replies
    2
    Views
    1,255

    VS 2010 Load page outside iFrame

    Hey,

    I have the following setup:
    -Default.aspx
    -Page1.aspx
    -Page2.aspx

    Default.aspx contains an iFrame, called "frame1"
    Upon the loading of Default.aspx, Page1.aspx gets loaded into the...
  13. VS 2010 Re: AddHandler in AddHandler and getting controls

    Hey,
    I decided this way was way too complicated.
    So I decided to rewrite the code and now it's more effecient and there's no need for a double addHandler.

    Thanks for the help anyway!
  14. VS 2010 [SOLVED] AddHandler in AddHandler and getting controls

    Hello,
    I'm trying to get a AddHandler to work, which is already in a AddHandler.

    So a button, generated by code is link to the following event:

    AddHandler lblAddComment.Click, AddressOf...
  15. Replies
    1
    Views
    615

    VS 2010 Administrator priviliges on specific events

    Hey, I know I can set the program to require administrator privileges in the manifest file.
    However, I don't need the whole program to have these privileges.

    I only need admin when I want to...
  16. Replies
    0
    Views
    806

    VS 2010 Getting Facebook news feed

    Hello,

    As part of a project I'm working on I'd like to display a user's wall.
    I found that you can log in using this code


    ...
  17. Replies
    4
    Views
    1,970

    VS 2010 Re: WMP - Memorystream

    yes, thats what I used to create the file.
    Thanks anyway :)
  18. Replies
    4
    Views
    1,970

    VS 2010 Re: WMP - Memorystream

    I'll just dump the stream to a temporary file and delete it when the program closes.
    Thanks for letting me know.
  19. Replies
    4
    Views
    1,970

    VS 2010 WMP - Memorystream

    Hello,

    I'm trying to play music from a memorystream in a WMP control.
    I can succesfully stream music with MediaPlayer, but this is limited to .wav and can't pause and so.


    Dim mPlayer As New...
  20. Replies
    1
    Views
    613

    VS 2008 Select object from radiobutton

    Hey,
    I have two labels on my form
    Label1
    Label2

    In the form load I generate a radiobutton for each label, with the text property being the name of the label.

    So two radiobuttons are made...
  21. Replies
    5
    Views
    879

    VS 2008 Re: Open zip file's contents in memory

    I can't wrap my head around it.
    Everything seems ok.

    The zip file simply contains a jpg therefore I use index 0.
    I tested if it could be read, so I requested the filename and it showed up fine....
  22. Replies
    5
    Views
    879

    VS 2008 Re: Open zip file's contents in memory

    Sorry, I forgot to mention I was using DotNetZip.

    I tried this code, but it gives an error:

    Dim ZipF As New ZipFile(ZipFile)
    Dim Input As Stream
    Dim Mem As...
  23. Replies
    5
    Views
    879

    VS 2008 Open zip file's contents in memory

    Hey,
    Is it possible to open a ZIP file and use afile, but not unpack it.

    Example
    MyFile.Zip
    Contents:
    -TextFile.txt
    -MusicFile.mp3
    -Image.jpg
  24. Replies
    2
    Views
    614

    VS 2008 Embedded form as topmost

    Hey,
    I'm trying to embed a form, which works, but it's under all my controls.
    It should appear on top of everything.


    Dim frmEmbedded As New frmLogin()
    frmEmbedded.TopLevel = False
    ...
  25. Replies
    3
    Views
    982

    VS 2008 Re: Inserting text on html page (WebBrowser)

    Okay, I figured it out

    You need to have the Post New Reply page loaded in the webbrowser.
    This works for vBulletin.


    Public Sub PasteText(ByVal wb As WebBrowser)
    elements =...
  26. Replies
    3
    Views
    982

    VS 2008 Re: Inserting text on html page (WebBrowser)

    This is the lnik for this thread:
    http://www.vbforums.com/newreply.php?do=newreply&noquote=1&p=3876765

    I need to copy a report from a richtextbox into this field (so where you type to submit a...
  27. Replies
    3
    Views
    982

    VS 2008 Inserting text on html page (WebBrowser)

    Hello,
    As it doesn't seem possible to make a new reply to a vBulletin thread, I'm trying something different.

    A link to a New Reply page is like this...
  28. Thread: Post to a forum

    by vixez
    Replies
    3
    Views
    986

    VS 2008 Post to a forum

    Hello,
    Is it possible to post to a certain thread on a vBulletin forum?

    I have a tool to diagnose some data on one's pc and I'd like to implement a function to directly post it in a certain...
  29. Replies
    2
    Views
    611

    VS 2008 Splitting by words, not chars

    Hey,
    I know I can use the Split function to split things, but that works with chars.
    I want to split pieces of text by a word, namely:
    [ CODE ]
    (without spaces)
    I tried entering that into the...
  30. Replies
    6
    Views
    1,647

    VS 2008 Re: Search files (access denied)

    This is the complete search code


    Public Class FileSearcher
    Dim Dirs As Boolean
    Dim SString As String
    Dim FilesFound As New Specialized.StringCollection
    Private Const...
  31. Replies
    6
    Views
    1,647

    VS 2008 Re: Search files (access denied)

    I'm stuck on this line


    Try
    MyFiles.AddRange(IO.Directory.GetFiles(Path))
    Catch ex As Exception
    MsgBox(ex.Message)
    End Try

    It says...
  32. Replies
    6
    Views
    1,647

    VS 2008 Re: Search files (access denied)

    I tried

    Dim searchResults As String() = Directory.GetFiles(cboDrives.Text, "*.exe", SearchOption.AllDirectories)
    For Each File In searchResults
    Try
    '...
  33. Replies
    6
    Views
    1,647

    VS 2008 Search files (access denied)

    I've tried various methods to search for files, but each time I encounter a "acces denied" error, which stops the search.

    Is there a way to scan for files, and skip the files it doesn't have...
  34. Replies
    6
    Views
    2,900

    VS 2008 Re: Illegal characters in path

    Okay, I now saw it was my bad.
    I had a system to convert paths, from a loaded file
    Let's say the file was in


    The file contained a reference to an other file.
    .. means it has to go up one path...
  35. Replies
    3
    Views
    723

    VS 2008 Re: Backgroundworker not copying files

    Thanks, I kinda sorted it.
    I moved the listview to the current form, I put the listbox items in an array and called the UI changes from a different sub :)
  36. Replies
    23
    Views
    34,016

    Re: Vista/7 Style Progress Bar

    I just tried it out, working great ;)
  37. Replies
    6
    Views
    2,900

    VS 2008 Re: Illegal characters in path

    It happens to every file after a certain amount of files.

    This caused it to throw the exception immediately.
  38. Replies
    6
    Views
    2,900

    VS 2008 [SOLVED]Illegal characters in path

    Hey,
    I'm getting a strange error.
    I can copy about 15 files, and then it says "Illegal characters in path".
    However, I can't see any ilelgal characters.

    http://i28.tinypic.com/bdh0x.jpg

    To...
  39. Replies
    3
    Views
    723

    VS 2008 [SOLVED]Backgroundworker not copying files

    Hey,
    I don't have muc experience with backgroundworkers, but this is basicalmly what I want it to do:
    - Copy files from a list
    - Add Succes/Fail to a listview
    - Report Progress


    Private...
  40. Replies
    2
    Views
    1,287

    VS 2008 Operator is not defined

    I have this code

    Public Shared Function IsEntryCDRM(bigfile000Name As String, entry As BigfileEntry) As Boolean
    If entry.length < 4 Then
    Return False
    End If
    Dim bigfileName As String...
Results 1 to 40 of 207
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width