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...
... 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...
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...
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...
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...
See Code Matt ... From: "kaghazaat" <kaghazaat@...> To: <vbhelp@yahoogroups.com> Sent: Tuesday, March 02, 2004 7:58 AM Subject: [vbhelp] pls correct it...
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q186/4/29.asp&NoWebContent=1 Is microsofts sample...
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...
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,...
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...
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...
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. ?...
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...
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...
... 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...
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 =...
As usual, you answer your own question :-) Matt ... From: "HouseDad" <cwcummins@...> To: <vbhelp@yahoogroups.com> Sent: Wednesday, March 03, 2004 5:09 AM...
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@...
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...
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...
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/ ...
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...
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...
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 ...