Search the web
Sign In
New User? Sign Up
helpwithvb · A group for those who need help with Visual Basic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 22036 - 22065 of 22583   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
22036
i want to learn vb prog. pls help me i am persuing in b.e. Love Cricket? Check out live scores, photos, video highlights and more. Click here...
Nitin Shrivastava
nitin.shri82
Offline Send Email
Jul 6, 2009
1:21 pm
22037
Hello I am a novice programmer who is doing an Open University [UK] degree level unit [for fun] on object oriented programming with VB Express Edition 2008. I...
Robert Dade
rwdade
Offline Send Email
Jul 6, 2009
3:45 pm
22038
Bob, You may want to grab a copy of this book and check out chapter 5 for a coverage of constructors and more in designing encapsulated classes. ...
Timothy Rupp
timrupp804
Offline Send Email
Jul 6, 2009
5:46 pm
22039
Hi Bob: MY FIRST PROBLEM What I want to do is to use the class Lists_AddNumber to contain the code [that currently operates in the form's code] which sets up a...
Neiger, Bruce D
thezorch
Offline Send Email
Jul 6, 2009
8:53 pm
22040
Hello again. I continue to struggle with VB and OOP, but [insanely?] I enjoy every moment of the process. If anyone out there has a moment to spare to answer...
Robert Dade
rwdade
Offline Send Email
Jul 14, 2009
4:26 pm
22041
Is there something in VB.Net that replaces or is equivalent to VB6's DoEvents?...
Steve Trigero
seecwriter
Offline Send Email
Jul 17, 2009
6:21 pm
22042
System.Windows.Forms.Application.DoEvents() With threading you can accomplish the same thing by putting the thread to sleep for a few processor slices and...
Timothy Rupp
timrupp804
Offline Send Email
Jul 17, 2009
8:14 pm
22043
This seems like it should be really easy to handle, but I am having problems. In VB5, I want to set up an exit routine where an event takes place for a ...
Benson, Robert F (J6C)
fedbens
Offline Send Email
Jul 20, 2009
2:04 pm
22044
Bob, Here is a pause routine that waits, handles midnight clock transactions and has a way to interrupts in the middle. Requires a module or global Boolean...
Joe Wasko
jpwswbug
Offline Send Email
Jul 20, 2009
2:31 pm
22045
VB5? Whew, I think I was still living in Seattle the last time I saw VB5 and seems like a lifetime ago. I do recall that in VB6 (and I think that it was the...
Timothy Rupp
timrupp804
Offline Send Email
Jul 20, 2009
2:46 pm
22046
How do you turn a user-designed Control into a Component in VB.NET 2008? According to this manual I'm reading, a Component is a Control without a visible...
Steve Trigero
seecwriter
Offline Send Email
Jul 20, 2009
3:55 pm
22047
It's not often I step in here but I'm probably the only one on the Forum still on VB5 Tim is correct in saying the timer interval is set in milliseconds. ...
Brian Shieldhouse
brianshieldh...
Offline Send Email
Jul 20, 2009
4:25 pm
22048
Thank you, Tim. I believe milliseconds are set via: tmrMyTimer.interval=500 Would this go in the same place with the tmrMyTimer.enabled = true ? And then...
Benson, Robert F (J6C)
fedbens
Offline Send Email
Jul 20, 2009
4:55 pm
22049
tmrMyTimer.interval = 500 is the time between each timer event. The timer event is tmrMytimer.Timer In this event, is where you place the code that runs each...
Joe Wasko
jpwswbug
Offline Send Email
Jul 20, 2009
5:49 pm
22050
I wos wondering if someboddy can help on this. What is  cup_z  is a program that i can downloaded?   THANK YOU . I wos wondering if someboddy can help on...
Manual Camaro
macamaro2005
Offline Send Email
Jul 20, 2009
7:55 pm
22051
I'm trying to add a user-designer control to an application and not having any luck. This is a VB 2008 project. I wrote the control and built the DLL. Now I'm...
Steve Trigero
seecwriter
Offline Send Email
Jul 20, 2009
10:20 pm
22052
Hi Robert, The operating system/VB.dll [1] fires your timer event when the time duration since the last firing matches what you have set in the Timer's ...
Steve Manser
tileguy2929
Offline Send Email
Jul 20, 2009
11:09 pm
22053
... I heard about Seattle... You were always firing at the flag because the greens were so soft < g > Steve ________________________________ From:...
Steve Manser
tileguy2929
Offline Send Email
Jul 20, 2009
11:25 pm
22054
A Google Search found this: Jul 19, 2009 ... Please download a software "cup_z" and run it. then you will find what is the chipset of your mainboard on the...
Steve Manser
tileguy2929
Offline Send Email
Jul 20, 2009
11:45 pm
22055
Forgot to give you the URL. It appears to be an eBay page in Australia: http://tinyurl.com/nefsbu Scroll down to the product description area. Steve ...
Steve Manser
tileguy2929
Offline Send Email
Jul 20, 2009
11:49 pm
22056
Not really.Seattle was a dozen years ago and I've only been pin hunting for the last couple of years. (In Seattle I was into wilderness hiking.lots of great...
Timothy Rupp
timrupp804
Offline Send Email
Jul 21, 2009
12:11 am
22057
Did you add this control to the Toolbox using the "Customize Toolbox" option? Using this option allows the dll of the user control to be added to the Framework...
Timothy Rupp
timrupp804
Offline Send Email
Jul 21, 2009
12:47 am
22058
Well, according to "the book", I was to right-click on the Toolbox and select Add Item to add the control. But there was no Add Item option on the pop-up menu....
Steve Trigero
seecwriter
Offline Send Email
Jul 21, 2009
1:21 am
22059
Are you trying to add an instance of your control using “Dim link as Xlink” outside of a routine…that would explain the Statement not valid in a...
Timothy Rupp
timrupp804
Offline Send Email
Jul 21, 2009
1:43 am
22060
There is no control in the toolbox. Just a tab label with my component's name on it, and a message under the tab saying there is no control. It's similar to...
Steve Trigero
seecwriter
Offline Send Email
Jul 21, 2009
2:06 am
22061
Ok let’s back up one step. What does your control class contain? It sounds like you created a class but have no members defined by that class. /tr From:...
Timothy Rupp
timrupp804
Offline Send Email
Jul 21, 2009
2:44 am
22062
... I'm actually considering going back to VB5. It appears to be better at multithreading than VB6. I presently have both installed. Adelle....
Adelle Hartley
adellehartley
Offline Send Email
Jul 21, 2009
2:55 am
22063
My class contains the SerialPort class and a number of functions for setting up the serial port, and for sending and receiving serial data using my company's...
Steve Trigero
seecwriter
Offline Send Email
Jul 21, 2009
2:58 am
22064
... Yes ! We used to be in Colorado, and as a central hub that is hard to beat, because there are so many fantastic areas easily reached for a 3 day weekend. ...
Steve Manser
tileguy2929
Offline Send Email
Jul 21, 2009
4:09 am
22065
Cup_z is the incorrect spelling, the application is actually Cpu_z and will tell you information about what type of CPU you have, cache, speed, what the...
Frank Corrao
lrdrhys
Offline Send Email
Jul 21, 2009
11:28 am
Messages 22036 - 22065 of 22583   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