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
  • Sub Report related question?

    question csharp hardware
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Crystal Report Formula field related question?

    question csharp
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Crystal Report [Report Title] related question?

    csharp question visual-studio
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • about RasApi32.dll!

    help com question
    2
    0 Votes
    2 Posts
    0 Views
    D
    Joe Billy wrote: by that dll file.now the program can work ,but it is the best solution.The mordem or mobile answer have already been a huge every boy,any help will be appreciated. problem.Where mobile receive the signal,modem can not identify the mobile's turn-on status.i see the RasApi32's error code,but i can not find correlative error code. other: i use the RasApi32.dll to connect mobile, can I complete my program?Can I solve my problem? compeers,can you help me?if you can send me some code about connect mobile by modem,you will be appreciated. can you understand my meaning????????????? Uhhhh....No. RageInTheMachine9532
  • RTF text seperating

    question data-structures
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • VB Splash Screen?

    question
    11
    0 Votes
    11 Posts
    0 Views
    D
    Or for a quick VB.NET discussion on MSDN, try this[^] RageInTheMachine9532
  • add event into control!

    question csharp tutorial
    2
    0 Votes
    2 Posts
    0 Views
    N
    AddHandler ComboBox1.SelectedIndexChanged, AddressOf MethodName Hope that helps :) Sig Under Construction. Visit back later. Support Bone
  • Interfacing OCR and Text to voice software using VB6.0

    question
    4
    0 Votes
    4 Posts
    2 Views
    D
    "Hopefully"? 'Hopefully' doesn't sound like a good start. Keep in mind that OCR software is FAR from perfect and reading filled in forms is a huge pain ... and handwriting, forget it! There is open source OCR on SourceForge.net. I'm not familiar with the specifics of any of the projects, but there might be something useful there. As for Speech, Microsoft has a Speech SDK available here[^] RageInTheMachine9532
  • Visual Basic

    question
    4
    0 Votes
    4 Posts
    0 Views
    R
    i agree...mastering VB is a greate book...even i use it...:cool: Have a Super Blessed Day! ------------------------- For God has not given us a spirit of fear, but of power and of love and of a sound mind. 2 Timothy 1:7 "For God so loved the world that He gave His only begotten Son, that whoever believes in Him should not perish but have everlasting life." John 3:16 "Therefore you also be ready, for the Son of Man is coming at an hour you do not expet." Luke 12:40
  • rtf color

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Array of Winsock ports in VB DLL

    data-structures question
    2
    0 Votes
    2 Posts
    0 Views
    D
    What do you mean by an "array of winsock ports"? What are they going to be used for? And which version of VB? And are you going to be using this DLL exclusively in another VB app or in a C/C++ app? RageInTheMachine9532
  • Backcolor on Tab Control

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • rich edit box

    tutorial help question lounge
    4
    0 Votes
    4 Posts
    0 Views
    R
    coul du gimm an example or something please??? i have been trying and have been unsuccessfull all the way...:(:confused: what if i have to write in a string then a type then a Rich edit bx content..??? i cant seem to make it work...:( tks a lot.. Have a Super Blessed Day! ------------------------- For God has not given us a spirit of fear, but of power and of love and of a sound mind. 2 Timothy 1:7 "For God so loved the world that He gave His only begotten Son, that whoever believes in Him should not perish but have everlasting life." John 3:16 "Therefore you also be ready, for the Son of Man is coming at an hour you do not expet." Luke 12:40
  • controls dissappearing on my form?

    csharp help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • printing to the printer with vb.net

    csharp com tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Finding IP Address

    sysadmin question
    2
    0 Votes
    2 Posts
    0 Views
    D
    There a couple of methods you could use to do this, but nothing easy... First, you could ping a range of IP addresses to get a list of machines that respond, then you would have to port scan each of those responding addresses to figure out what kind of machine is at that address... Second, you could write a client that you deploy to all of your machines that reports back to a central server and reports the address in use... But why go through all that trouble when you could download a good IP/Port scanning tool to do that for you or... If your network is using DHCP to assign addresses, look at the logs/database for the DHCP server to see what addresses have been handed out... RageInTheMachine9532
  • Random Access File (VB)

    question help lounge
    2
    0 Votes
    2 Posts
    0 Views
    D
    If your want to pass the file number around, keeping the file open, you can pass it as a global variable in a .vb module or class file. On the downside, what your doing isn't considered proper programming technique because it is no longer a modular design. If your going to be doing file access from multiple modules (or forms), it's best to write up a set of public functions that handles file access for you. Oh yeah, it is NOT a bad thing to be opening and closing the same file all the time... But, of course, it all depends on what your doing... RageInTheMachine9532
  • System Events

    question
    3
    0 Votes
    3 Posts
    0 Views
    M
    Actually, it doesn't matter what kind of app...whatever way is the best to implement it...I don't really care about the "easy" factor of programming. ;P I'll check out the link.
  • Retrieve a list of online users on a domain

    tutorial question
    2
    0 Votes
    2 Posts
    0 Views
    A
    You would have to check with each server in the domain, seperately , to get the list of users who have attachments to that box. AD, nor any other directory service I know of, keeps track of who is logged on in the directory. For several reasons, there is no way to keep that kind of information accurate. I think the closest your going to get to that kind of information, in the directory, is looking at the last known login time for each user.
  • Arrays in VB.Net

    csharp algorithms data-structures tutorial
    6
    0 Votes
    6 Posts
    0 Views
    C
    redim preserve numarray(size) numarray(ubound(numarray)) = newobject size += 1