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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 20753 - 20782 of 22583   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20753
If your trying to reduce the following line it is easily done: If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then Can be reduced to: ...
Frank Corrao
lrdrhys
Offline Send Email
May 1, 2008
3:31 pm
20754
I have Visual Stuido 2005 Standard. My main menu selections are: File Edit View Tools Window Community Help How do I get the Web menu to display? Thanks....
lezlyprime
Offline Send Email
May 2, 2008
1:21 am
20755
In VB6 I could have a function return a structure. In VB.Net I get an error message saying the default property could not be resolved. How can I return a...
Steve Trigero
seecwriter
Offline Send Email
May 5, 2008
9:09 pm
20756
I haven't been able to locate my copy of this book. But unless its a different version than the one I have (or had), I believe Mr. Grier wrote his own serial ...
Steve Trigero
seecwriter
Offline Send Email
May 5, 2008
9:18 pm
20757
In VB6 I could have a function return a structure. In VB.Net I get an error message saying the default property could not be resolved. How can I return a...
Neiger, Bruce D
thezorch
Offline Send Email
May 5, 2008
9:29 pm
20758
'This code is in a module file (*.bas) and written in VB6. Public Structure Param Dim returnCode As Short Dim sband As Short Dim value As Integer End Structure...
Steve Trigero
seecwriter
Offline Send Email
May 5, 2008
11:28 pm
20759
A bit of a puzzlement. In .NET, classes can have default properties, which must be array properties. I have included an excerpt from an online tutorial that...
Neiger, Bruce D
thezorch
Offline Send Email
May 6, 2008
2:24 pm
20760
Try the following changes: 'This code is in a module file (*.bas) and written in VB6. Module Module1 Public Structure Param Dim returnCode As Short Dim sband...
Frank Corrao
lrdrhys
Offline Send Email
May 6, 2008
7:29 pm
20761
Is there a way to determine whether the Up arrow or Down arrow was clicked without keeping a copy of the original value and comparing it to the new value after...
Steve Trigero
seecwriter
Offline Send Email
May 6, 2008
10:51 pm
20762
The UpButton and DownButton methods of the control can be overridden. You may want to check out modifying the NumericUpDown to have the behavior that you...
Tim Rupp
timrupp804
Offline Send Email
May 7, 2008
10:14 am
20763
I ran into an issue using Optional arguments in VB6. In one subroutine I declare the only argument as optional, but IsMissing() always returns false whether or...
Steve Trigero
seecwriter
Offline Send Email
May 9, 2008
9:18 pm
20764
Yep. You found it... Ismissing only works with variants. -BDN ________________________________ From: helpwithvb@yahoogroups.com on behalf of Steve Trigero ...
Neiger, Bruce D
thezorch
Offline Send Email
May 9, 2008
9:40 pm
20765
But the MS Programmer's Guide uses strings in its examples, and I've used boolean in my apps with success. This is very strange. Steve ... From: "Neiger, Bruce...
Steve Trigero
seecwriter
Offline Send Email
May 9, 2008
10:10 pm
20766
Back-In-The-Day, Bruce probably did this as well, but I was taught to always provide a default value when I used Optional Arguments, and then I didn't have to ...
Steve Manser
tileguy2929
Offline Send Email
May 9, 2008
10:15 pm
20767
Don't tell me that all Booleans are really Variants ? Bruce ? Tim ? Frank ? Adelle ? Steve ? IIRC, we can provide any type of Optional Argument, but the...
Steve Manser
tileguy2929
Offline Send Email
May 9, 2008
10:23 pm
20768
... You called? I have to admit I'm not too familiar with the peculiarities of VB on this one. The Optional keyword conflates two distinct COM concepts -...
Adelle Hartley
adellehartley
Offline Send Email
May 10, 2008
7:39 am
20769
... I did. I missed you :) My ESP is running low. I had to use e-mail :) I could not imagine that a 'switch' was going to be transformed under the hood into...
Steve Manser
tileguy2929
Offline Send Email
May 10, 2008
7:58 am
20770
I would like to display a progress bar as I fill my data adapter. I'm not finding much in the way of discussions on how this might be accomplished and I'm...
allan_blackford
Offline Send Email
May 11, 2008
1:27 am
20771
I think I may have figured it out. I've tested it with my crystal report and it appears to work. Here's what I did. Dim strCommand = "SELECT COUNT(*) as...
allan_blackford
Offline Send Email
May 12, 2008
1:58 am
20772
This is why Optional arguments are not recommended in VB7+ (.Net) A procedure can't detect whether a given argument has been omitted or the calling code has...
Tim Rupp
timrupp804
Offline Send Email
May 12, 2008
2:09 pm
20773
I am off topic here and would like to ask two questions When I open Alta Vista for a Search I would like to have past search terms not show up in the search...
Dwight Norris
choroid_45
Offline Send Email
May 15, 2008
2:13 am
20774
... Start->Internet Explorer->Tools->Internet Options or Control Panel->Classic View->Internet Options then Content->AutoComplete That will allow you to toggle...
Adelle Hartley
adellehartley
Offline Send Email
May 15, 2008
3:06 am
20775
Thank You just could not find that setting Adelle save the search madness dwight ... From: "Adelle Hartley" <adelle@...> To:...
Dwight Norris
choroid_45
Offline Send Email
May 15, 2008
3:00 pm
20776
... I am on XP and am using VB6. The mouse-wheel does work. Make sure in the Add-In Manager that the Add-In MouseWheel Fix has the Loaded/Loaded and Load on...
hunkyno1
Offline Send Email
May 15, 2008
7:09 pm
20777
If this code will unload the form when the ESC key is pressed Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyEscape Then ...
Dwight Norris
choroid_45
Offline Send Email
May 20, 2008
1:36 am
20778
I don't see where you're calling "unload me" in cmdNEXT_KeyDown. Am I missing something? ... From: Dwight Norris <norrisd@...> To:...
Steve Trigero
seecwriter
Offline Send Email
May 20, 2008
2:29 am
20779
What I was trying to do was scroll through the record set with a press of the Left arrow key or the Right arrow key I have even tried the code in the Form...
Dwight Norris
choroid_45
Offline Send Email
May 20, 2008
3:54 am
20780
Hi Dwight, VB-6 has built-in constants for all of the keyboard keys. Something like vbArrowLeft or vbUpArrow, you'll have to check the Intelli-Sense lists. ...
Steve Manser
tileguy2929
Offline Send Email
May 20, 2008
5:08 pm
20781
I have VS.Net 2003, 2005, & 2008 installed on my computer. I want to remove 2003. But there is no Uninstall application in the 2003 directory and the 2003...
Steve Trigero
seecwriter
Offline Send Email
May 20, 2008
9:30 pm
20782
http://support.microsoft.com/kb/824642 _____ From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On Behalf Of Steve Trigero Sent: Tuesday, May...
Tim Rupp
timrupp804
Offline Send Email
May 20, 2008
10:33 pm
Messages 20753 - 20782 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