... Hi Nick, there is a great website ypu can use for VB. It's called Planet Source Code (planet-source-code.com). When you get there you may have to sign-in....
I've recently purchased a copy of VB6 to upgrade some machine control code from DOS to a newer machine running XP. The vendor's software is designed to work...
... Make sure you have all the updates for VB6 installed. Sometimes to get VB6 working as it should, you only have to reinstall it. Try also installing to a...
Since it's no longer supported I doubt that I'll be able to dig up the updates. This copy is version 8176. I don't know how up to date it is. My primary...
Try this (I had this happen as well alnog time ago. This is due to a new restriction in IE-Security. But you can force an exception of this new rule for the...
I'm trying to update a record in an Access database, using SQL style statements. All my SELECTS and INSERTS are working ok, but for some reason the dang...
Figured it out. THe line that reads: objConn.Execute strSQL, objConn, 2, 3 should read: objConn.Execute strSQL, 2 See? I knew it was something simple!...
For .HLP Help Files to work with Vista, a free download from the Microsoft website is necessary. Does anyone know what is the situation with Windows 7? Is a...
hi friends, please help me to do a simple interface to the outer world through usb port by using visual basic 6. i need a very simple circuit diagram that...
would pinouts.ru help at all on the hardware end? ... From: james b <weekend4lust@...> Subject: [Visual Basic 6 programming] Re: usb by visual basic 6. ...
... The moderators don't see it until it gets to our inboxes. By that time, it is already live. The only thing we can do it delete it, and ban the person who...
hello everyone, Good morning, can any one please help me regarding how to connect combo box to ADO, and how to delete combo box value & add value in combo box...
HELLO I am trying to write a program to generate unique random numbers each time the command button is clicked (no zeros and no duplicate) however when i use...
Difficult to understand what you want here, but if it is a number between 1 and 3, the example in VB3 says to use: Myvalue = Int((3 * Rnd) + 1) ' Generate...
thanks Bart I made a typo, I really wanted is random number between 1 and 13. Your code works fine if i replace the 3 with 13 however each time I click the...
When selecting random numbers from a limited series, the same number is frequently generated in successive draws. The RND function produces pseudo random...
Thanks Hacketet I understand what you are saying, i even read about the 4 digit seed that you are referring too. A very nice idea but can you shed some light...
Here's a simple solution. In your case the list is a 1 based array with the digits 1 to 13, min is 1, max is 13. Public Sub RandomizeList(List() As Long, min...
If I recall, using simply "Randomize" will seed the generator the same all the time, resulting in the same string of "Random" numbers to be chosen each time. ...
HI, I am undergoing in developing a software called "ORACLE GUI" in which i have selected back end development tool as VB 6.0 to design the menu forms. I need...