Search the web
Sign In
New User? Sign Up
vbhelp · Visual Basic Help Center Forum
? 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 12697 - 12726 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12697
hi friends. last week, i have posted the msg regarding the download. i have seen the advantages of using inet control and xmlhttp to download the file from the...
Anchoori
sree52
Offline Send Email
Mar 1, 2004
9:15 am
12698
... Ok, I am going to show my ignorance here, but I know you're THE DAO guy to answer my question. ;-) BTW: I create the databases via code, am I understanding...
HouseDad
cwcummins
Offline Send Email
Mar 1, 2004
3:27 pm
12699
I think that it may indeed be sorting the DB by the index, but it is sorting by "text" rather than numerical order. Perhaps changing the field type will solve...
HouseDad
cwcummins
Offline Send Email
Mar 1, 2004
4:15 pm
12700
look the Format Function. example: thisNumber=2 Text1.Text = format(thisNumber,"##,00.00") Montu ... From: kaghazaat To: vbhelp@yahoogroups.com Sent: Sunday,...
Md. Nurul Islam Patwary
monlipe
Offline Send Email
Mar 1, 2004
4:20 pm
12701
What is the code for placing x and y scroll bars in the Picture/image box ??? Waiting for reply...
kaghazaat
Offline Send Email
Mar 1, 2004
10:20 pm
12702
I m trying to code, input in the text box so that the user can only enter numbers (0123456789) and a DOT ( . ) The code below is doing the same but i cant...
kaghazaat
Offline Send Email
Mar 1, 2004
10:21 pm
12703
ADO really is not much good for lots of things. However, it is not meant to be what JET is. The database manipulation tools for ADO are really in the ADOX...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 1, 2004
11:22 pm
12704
Having just seen your code I can tell you for certain that that is exactly what is happening. Matt ... From: "HouseDad" <cwcummins@...> To:...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 1, 2004
11:23 pm
12705
See Code Matt ... From: "kaghazaat" <kaghazaat@...> To: <vbhelp@yahoogroups.com> Sent: Tuesday, March 02, 2004 7:58 AM Subject: [vbhelp] pls correct it...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 1, 2004
11:26 pm
12706
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q186/4/29.asp&NoWebContent=1 Is microsofts sample...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 1, 2004
11:30 pm
12707
Kaghazaat try this, Dim strValid As String strValid = "1234567890." If KeyAscii > 26 Then If InStr(strValid, Chr(KeyAscii)) = 0 Then KeyAscii = 0 End If End If...
Jominix
skankyjom
Offline Send Email
Mar 2, 2004
12:39 am
12708
hi there, try using the isnumeric() function. ex. private sub text1_change() if not isnumeric(text1.text) then sendkeys"{BACKSPACE}" end sub hope it will help,...
Ruel D. Bamba
rdbamba
Offline Send Email
Mar 2, 2004
2:04 am
12709
Maybe this code will help; ===Code==== Private IsDot As Boolean Private DecNumber As String Private Sub I1_Change() On Error Resume Next Dim CurrValue As...
patika jerry
patikaj
Offline Send Email
Mar 2, 2004
3:02 am
12710
Dear all! I have a problem with data grid format in VB. I want to format a column in datagrid which is contained this field : 8347 I want to display the field...
Yurisca
yurisca@...
Send Email
Mar 2, 2004
5:05 am
12711
Yurisca try this: Datagrid1.Columns("Columnname").NumberFormat = "###,##0.00000" Jominix ... From: "Yurisca" <yurisca@...> To:...
Jominix
skankyjom
Offline Send Email
Mar 2, 2004
8:12 am
12712
hi friends do anyone know how to create the signed activex controls so that it can be used in asp/html in order to not to display any alert while executing. ?...
Anchoori
sree52
Offline Send Email
Mar 2, 2004
10:15 am
12713
Private Sub Text5_KeyPress(KeyAscii As Integer) 'allow backspace and dot if keyascii = 8 or keyascii = 46 then exit sub 'only allow numbers if...
Mike Bouffler
mikebouffler
Offline Send Email
Mar 2, 2004
12:54 pm
12714
You could also just delete it: text1.text=left(text1.text,len(text1.text)-1) then put the cursor at the end of the text: text1.selstart=len(text1.text) This...
Rick Rose
roseri1997
Offline Send Email
Mar 2, 2004
5:59 pm
12715
This is how I do it. This is in my form_keypress sub. A tag of 1 means it's numeric only. (I use a 2 for alpha, and the second digit of the tag gives an...
HouseDad
cwcummins
Offline Send Email
Mar 2, 2004
6:07 pm
12716
... not meant ... really in ... location ... Thank you! BTW: Will this sort it numerically even though it is a text field? I need to define it as a numeric...
HouseDad
cwcummins
Offline Send Email
Mar 2, 2004
6:10 pm
12717
Ok, I changed dbText to dbNumeric (I was guessing at what to put), and it "blows up" by not creating the database. What am I doing wrong? -- Set fld =...
HouseDad
cwcummins
Offline Send Email
Mar 2, 2004
6:26 pm
12718
As usual, you answer your own question :-) Matt ... From: "HouseDad" <cwcummins@...> To: <vbhelp@yahoogroups.com> Sent: Wednesday, March 03, 2004 5:09 AM...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 3, 2004
12:21 am
12719
Hi, I am creating a birthday calendar for myself. Can you please click on the link below and enter your birthday for me. Don't worry it is quick, and you don't...
rmsarma@...
Send Email
Mar 6, 2004
4:17 am
12720
Matt, I am stumped as to why the databse isn't created when using dbumeric instead of dbtext when defining the field. I am assuming there probably isn't...
HouseDad
cwcummins
Offline Send Email
Mar 6, 2004
12:38 pm
12721
I been Snipping again ... Set fld = tdNewTable.CreateField("Recd", dbLong,0) ... what you are talking about here is the scope of the variable. Declarations as...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 6, 2004
2:21 pm
12722
For those that may be interested, the source I refer to is Edward Moths excellent data tool. His home page can be found at http://www.qbdsoftware.co.uk/moth/ ...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 6, 2004
11:13 pm
12723
Just wanted to take a minute to thank you for the reply. I will start on the project again tomorrow and will put your advice to use. I was under the...
HouseDad
cwcummins
Offline Send Email
Mar 7, 2004
9:19 pm
12724
I think I have seen this question answered before, but I didn't see the option... I see form1.minbutton and maxbutton, but don't see anything for the close...
HouseDad
cwcummins
Offline Send Email
Mar 8, 2004
2:35 pm
12725
Here's an example of how to stop the X from closing the form: Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Select Case UnloadMode ...
Don Roberts
droberts_00
Offline Send Email
Mar 8, 2004
2:56 pm
12726
Or just change the style of the form to one that does not have a close option. Matt ... From: "Don Roberts" <don@...> To: <vbhelp@yahoogroups.com> ...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 8, 2004
5:10 pm
Messages 12697 - 12726 of 15862   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