Skip to content

Visual Basic

Visual Basic Questions

This category can be followed from the open social web via the handle visual-basic@forum.codeproject.com

34.4k Topics 120.1k Posts
  • Any Setup Expert around!

    csharp dotnet tutorial workspace
    3
    0 Votes
    3 Posts
    0 Views
    H
    thanks niel i will go through the setup thing as will b trying it out for the first time and soon get back if any problem thanks for the help sir. i had gone through ur personal site, bout winamp it is quite interesting. thanks again! :)Be Humble in Victory and Strong in Defeat.:) -Het
  • One more Help Please!!

    linux help tutorial
    7
    0 Votes
    7 Posts
    1 Views
    G
    Never thought of that. But I'll check what could you do. :) Free your mind...
  • How to get rid of mouse right click popup

    tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    M
    Yes, I'm using Net. I looked up WndProc in the MSDN library, but can't really figure out what to do here. I know that somehow I'm supposed to trap this popup menu so that when it appears, I just disreguard it. Thing is I'm not really sure how to accomplish that. I'll play with it a bit more and see what I can get to happen. Thanks.
  • array bitmaps? :confused:

    graphics game-dev data-structures question
    3
    0 Votes
    3 Posts
    0 Views
    P
    hey, thanks for your help but im not shure what your saying. I'm a student but In high school, so Im not trying to cheet lol. Im sorry for not saying this but I'm not using picture boxes but bitmaps. I'll email you the code so you can see what I mean, If you dont want to download it then I will post the code later, my email is: p_dog_2007@hotmail.com thank you, if you dont have the time i can wait
  • How can i detect my computer with code? (please tell me)

    question help
    2
    0 Votes
    2 Posts
    0 Views
    H
    MAC Address could works, but I don't know how to get this with VB, when the command ipconfig you can, if you can make a process of this and get the stream you can get the MAC Address. Maybe, it's just a crazy idea. ---- hxxbin
  • formatting date to a RTF

    question help
    2
    0 Votes
    2 Posts
    0 Views
    N
    When I need to do this, I open wordpad (not word) and i type in some text, do some formatting and examine the structure of the generated rtf file :-) greetz ;-) *Niels Penneman* Software/Dev Site Personal Site
  • Registry

    csharp windows-admin
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • MSMQ

    com sysadmin help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Uninstalling Windows Services W2003

    csharp visual-studio help announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • creating help in vb6.0

    help tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Treeview Problem

    question help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • WM_NOTIFY Reports incorrect values

    csharp help
    5
    0 Votes
    5 Posts
    0 Views
    N
    Correct translation to VB.NET is here: Structure NMHDR Dim hwndFrom As IntPtr ' Window handle of control sending message Dim idFrom As Integer ' Identifier of control sending message Dim code As Integer ' Specifies the notification code End Structure Structure NMHEADER Dim hdr As NMHDR Dim iItem As Integer Dim iButton As Integer Dim lPtrHDItem As IntPtr ' HDITEM FAR\* pItem End Structure greetz ;-) *Niels Penneman* Software/Dev Site Personal Site
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Timers(?)

    help question
    6
    0 Votes
    6 Posts
    0 Views
    D
    Well, if you want to keep it as a service, then you would have to use a Timer to wake up every so often, poll the system for the time, then see if it is time for the service to do its job. Configuration might be done in an .INI file, for time to wake up and do its job, then restart the service. RageInTheMachine9532
  • 0 Votes
    4 Posts
    0 Views
    C
    Hi Guille, Yeh but I would still cast TopNode to a TreeNodeCommand see? The problem seems to be casting the node causes the tree to duplicate itself, get me? Nursey
  • Converting a bitmap to an array of pixels

    question csharp graphics data-structures
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Designing games using VB 6

    design game-dev help question
    2
    0 Votes
    2 Posts
    0 Views
    N
    I guess you can set the number of boxes by creating a control array from code (define the element 0 in your form, not from code) The timer: use the Timer control, make it a countdown timer (define a variable, for ex. an integer,s et it to a value and start the timer) Dim timeout as Integer timeout = 60 ' 60 x interval = 1 minute Timer1.Interval = 1000 ' 1 second Timer1.Enabled = True and in the timer event: timeout = timeout - 1 lblTime.Caption = timeout & " second(s) left" This will create a countdown for 1 minute... greetz ;-) *Niels Penneman* Software/Dev Site Personal Site
  • Can you load an image from a pointer?

    csharp com performance question
    3
    0 Votes
    3 Posts
    1 Views
    J
    Of course... the ActiveX control returns a pointer to an in-memory TIFF image (not a bitmap). -Joe There's no such thing as a bad beer... some are just better than others.
  • Copy files from source to Destination

    csharp
    2
    0 Votes
    2 Posts
    0 Views
    C
    System.IO.File.Copy(source, destination)
  • Encrypting files automatically when closing a programme

    help
    3
    0 Votes
    3 Posts
    0 Views
    F
    VB.Net. Unfortunately I really do need to encrypt the files since they would contain confidential information which should not be accessible to anyone except people with admin privileges ( IOW, the people entering the info shouldn't even have access to the entered info). I've looked into the various other ways of doing this and I really think encryption is the way I need to go, unfortunately I haven't found a way to enact it without first loading the file into a textbox and then encrypting only that text. Unfortunately that's a no go also.