Search the web
Sign In
New User? Sign Up
visualbasic6programming · VB help for all versions!
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 32015 - 32050 of 32051   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
32015
... 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....
tincurt
Offline Send Email
Sep 19, 2009
9:24 am
32016
hello everyone, I am in to know when would I use Visual Basic. I also need to what type of tools and supports that are available in Visual Basic....
Crystal
krystalyn
Offline Send Email
Sep 19, 2009
6:24 pm
32017
... The second question I'll answer first. You won't see a lot of support from Microsoft, if any. VB6 was retired long ago. There are still some...
dwirch
Offline Send Email
Sep 20, 2009
2:40 pm
32018
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...
hacketet
Offline Send Email
Sep 23, 2009
1:56 pm
32019
... 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...
Daniel Baggett
conecuhdan
Offline Send Email
Sep 23, 2009
10:41 pm
32020
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...
hacketet
Offline Send Email
Sep 24, 2009
1:15 am
32021
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...
Matt Ives
mjcjives
Offline Send Email
Sep 24, 2009
2:21 pm
32022
... True, it is not actively supported but the updates are still available on Microsoft's website. Just search for vb6 update....
Daniel Baggett
conecuhdan
Offline Send Email
Sep 24, 2009
5:00 pm
32023
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...
dwirch
Offline Send Email
Sep 24, 2009
5:46 pm
32024
Can you get ahold of me or Darrin via email please? Thanks, Derek...
dwirch
Offline Send Email
Sep 24, 2009
6:03 pm
32025
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!...
dwirch
Offline Send Email
Sep 24, 2009
6:54 pm
32026
Thanks. It would have taken me forever to dig that info out. I'll get the updates and give this a try as soon as I get back form this trip....
hacketet
Offline Send Email
Sep 25, 2009
1:53 am
32027
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...
Michael Hodge
braxtoncotta...
Offline Send Email
Sep 30, 2009
9:51 am
32028
... From: Graphics Designer <graphicdesigner3010@...> Subject: Fw: photoshop and flash video tutorials To: graphicdesigner3010@... Date: Thursday,...
Graphics Designer
graphicdesig...
Offline Send Email
Oct 1, 2009
8:45 pm
32029
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...
Montadar
muntather_moto
Offline Send Email
Oct 1, 2009
10:24 pm
32032
would love to know when u solve this. please send me a message when u do. ill try and help u solve it till then tho.. thanx, james...
james b
weekend4lust
Offline Send Email
Oct 7, 2009
5:03 pm
32033
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. ...
aurora clark
blinkypoet
Offline Send Email
Oct 7, 2009
5:07 pm
32034
its a start. thanx...
james b
weekend4lust
Offline Send Email
Oct 7, 2009
5:11 pm
32038
... Moderator, How much longer will you allow this trash to be posted?...
Daniel Baggett
conecuhdan
Offline Send Email
Oct 11, 2009
4:02 pm
32039
... 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...
dwirch
Offline Send Email
Oct 12, 2009
2:43 pm
32040
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...
sajjad_hussaini_pk
sajjad_hussa...
Offline Send Email
Oct 16, 2009
5:32 am
32042
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...
nigeeb2002
Offline Send Email
Oct 18, 2009
10:32 am
32043
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...
Bart Toole
toole130
Offline Send Email
Oct 18, 2009
6:11 pm
32044
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...
nigeeb2002
Offline Send Email
Oct 19, 2009
1:21 pm
32045
When selecting random numbers from a limited series, the same number is frequently generated in successive draws. The RND function produces pseudo random...
hacketet
Offline Send Email
Oct 19, 2009
1:43 pm
32046
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...
nigeeb2002
Offline Send Email
Oct 19, 2009
7:14 pm
32047
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...
hacketet
Offline Send Email
Oct 19, 2009
8:00 pm
32048
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. ...
dwirch
Offline Send Email
Oct 20, 2009
12:09 am
32049
RIGHT ON THE HEAD OF THE NAIL DWIRCH... thanks exactly what i wanted, can't wait to implement it in my program. Thanks again Nigel...
nigeeb2002
Offline Send Email
Oct 20, 2009
2:27 am
32050
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...
rohith c
eagle02wings
Offline Send Email
Oct 21, 2009
3:19 pm
Messages 32015 - 32050 of 32051   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help