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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 19467 - 19496 of 22573   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19467
... From the "no code" is "good code" department: If the "Cancel" property of a button is True, then pressing escape will call the Click event handler for the...
Adelle Hartley
adellehartley
Offline Send Email
May 1, 2007
12:42 pm
19468
I told you I was a novice as per Adelle (the down under surfer girl) we have to ways to get the skin off the Cat so that I am clear Adelle for your code to...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
2:30 pm
19469
Hi Dwight, I think it is 'sleep time' in Australia. If I recall correctly, only one button, on each form, is allowed to have its Cancel Property set to 'True'....
Steve Manser
tileguy2929
Offline Send Email
May 1, 2007
3:01 pm
19470
Reading the Question is such an integral part of answering the question Question The control does not seem to want to give up focus. and would like to select...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
3:19 pm
19471
If the CANCEL property of the COMMAND BUTTON object is set to TRUE, then the COMMAND BUTTO will automatically receive the focus when the ESCAPE key is pressed,...
Richard
alienwebmaster
Offline Send Email
May 1, 2007
4:39 pm
19472
Another thing to try is putting a little conditional statement in the KEYPRESS event of the textbox that won't give up the focus. Put this at the top of the...
Richard
alienwebmaster
Offline Send Email
May 1, 2007
4:48 pm
19473
Dwight: If you don't want to allow the user to load and alter the document, get Prof. Smiley's "LTP: VB: Objects" book (ISBN: 1-9296-8516-5) and check out...
Richard
alienwebmaster
Offline Send Email
May 1, 2007
5:01 pm
19474
I might be missing what you asking, but how about this: Assuming the textbox is named txtMyBox, and you want to stop the run if the word "monkey" is typed in: ...
twlewis@...
tlewis_mcleo...
Offline Send Email
May 1, 2007
5:06 pm
19475
Dwight: Error 429 is resolved in Prof. Smiley's LTP: VB OBJECTS I mentioned earlier. If you don't already have a copy of it, I would highly recommend it. ...
Richard
alienwebmaster
Offline Send Email
May 1, 2007
5:53 pm
19476
Dwight, system-wise, that part is done at the installation of Office. In a VB project, add it through Project->Reference, and select the Microsoft Word object...
twlewis@...
tlewis_mcleo...
Offline Send Email
May 1, 2007
6:12 pm
19477
Dwight, system-wise, that part is done at the installation of Office. In a VB project, add it through Project->Reference, and select the Microsoft Word object...
twlewis@...
tlewis_mcleo...
Offline Send Email
May 1, 2007
6:13 pm
19478
Glad to See I have created much confusion about this. Again, the Problem, Form loaded, Visible, TxtOne (text box) has focus TxtOne Validation says it must have...
Joe Wasko
jpwswbug
Offline Send Email
May 1, 2007
6:54 pm
19479
Oh great more learning Now can we hide the e-mails before the surfer girl gets up She will make me learn a new way to use the code for sure So the Cat is able...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
7:50 pm
19480
Drat the one book I do not have let me check my other Obj Book though may be covered in that book thanks ... From: "Richard" <rhenerlau@...> To:...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
7:53 pm
19481
Joe the experts will be here to correct me if I am wrong I would say No you should be able to exit the Object at any time unless you demand the Object (text...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
8:01 pm
19482
I want to let the end user exit the Application without entering data ? _____ From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On Behalf Of...
Joe Wasko
jpwswbug
Offline Send Email
May 1, 2007
8:11 pm
19483
For the Exit button, set the "CausesValidation" property to False. That should solve your problem. Steve ... From: Joe Wasko <jpw@...> To:...
Steve Trigero
seecwriter
Offline Send Email
May 1, 2007
8:18 pm
19484
Yep I have it loaded here is the code with the modification I have made sofar Sub ShowMyFile() Dim PrintReport As String Dim PreviewReport As String Response =...
Dwight Norris
choroid_45
Offline Send Email
May 1, 2007
8:43 pm
19485
Hi Joe, ... I think the following code is the minimalist example that demonstrates your problem. Private Sub Text1_Validate(Cancel As Boolean) 'You will never...
Adelle Hartley
adellehartley
Offline Send Email
May 1, 2007
9:50 pm
19486
You probably noticed in in windows applications, certain procedures won't let you exit and leave something hanging. The user must chose something that is...
Jesus Is the Answer
halfof4is2
Offline Send Email
May 2, 2007
5:04 pm
19487
Hi Folks I have 3 Introductory programming courses beginning on Monday, May 7th, including one on VB.Net. (I have a VB.Net Express course beginning on Monday,...
John Smiley
johnsmiley22
Offline Send Email
May 2, 2007
8:25 pm
19488
I made a listbox and set its style to checked. I can't seem to see any way to programically check or uncheck or detect if an individual item in its list has...
Have A_nice_day
halfof4is2
Offline Send Email
May 6, 2007
9:35 pm
19489
Anthony, If you're using VB in one of the .NET versions, you can iterate through the CheckedItemCollection of the CheckedListBox. This collection contains the ...
Timothy Rupp
timrupp804
Offline Send Email
May 6, 2007
11:04 pm
19490
... In VB6, the ListBox control has a Selected property that takes the item's index as a parameter. eg. Private Sub Form_Load() List1.AddItem "thing" ...
Adelle Hartley
adellehartley
Offline Send Email
May 6, 2007
11:39 pm
19491
I am using the OpenTextFile method of FileSystemObject to open a file. The problem is that the carriage return (Chr 13) is not recognized. When I open the...
Tim Lewis
tlewis_mcleo...
Offline Send Email
May 8, 2007
8:08 pm
19492
I am writing an application that allows students to register for classes on-line. Once the student registers for the class, their registration is checked...
mattgottlieb_2000
mattgottlieb...
Offline Send Email
May 8, 2007
8:22 pm
19493
Just a shot, but possibly your text file has CRs but not LFs? Try this (just for the giggles) Set objFSO = CreateObject("Scripting.FileSystemObject") Set...
Neiger, Bruce D
thezorch
Offline Send Email
May 8, 2007
8:39 pm
19494
Is "intRecordCount" supposed to be "intFSOCount"? Rather than re-dimension an array in a loop, I suggest declaring a an array of strings with a set number and...
Steve Trigero
seecwriter
Offline Send Email
May 8, 2007
8:56 pm
19495
Thank you Bruce. You got my head to thinking, which is what I needed. I will post the finished code. Sorry for the lack of Subject....
twlewis@...
tlewis_mcleo...
Offline Send Email
May 8, 2007
9:03 pm
19496
Sorry Steve. intRecordCount was an old counter that I left in by mistake. It serves no purpose....
twlewis@...
tlewis_mcleo...
Offline Send Email
May 8, 2007
9:05 pm
Messages 19467 - 19496 of 22573   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