| Recent Answers from Richard Rost |
 |
2008-08-26 vb6.0 case statement: The SELECT CASE statement is just an alternative to IF/THEN. Instead of saying IF A=B Then Do something ElseIf A=C Then Do something ElseIf A=D Then Do something Else Do something...
|
2008-08-25 Access 2003 EVAL function: Yes, you would have to rename your boxes though. Create a CONTROL ARRAY. If you copy one text box and paste it, VB asks you if you want to create a control array. Say YES. Now you'll have MyTextBox(0)...
|
2008-08-19 accessing a barcode scanner using visual basic code: Most barcode scanners that I work with convert the barcode into standard numbers and letters. Just position the cursor in the textbox you want, scan the code, and your VB can just process that input. There's...
|
2008-08-17 Excel Macros: You don't have a properly formed statement. Plus, your InputBox is returning a STRING value. You can try converting it to an integer: ActiveCell.Value = ActiveCell.Value-CInt(InputBox("Enter Value"))...
|
2008-08-15 DIR function missing in Access 2003: This should work fine for you: X=UCase(Dir("smpftpp02AshBrkrgeSCUNAREQ.xls")) But you can't assign it to another string like you have in your question. DIR is still a valid function, as is UCASE...
|
| More Answers for "Visual Basic" |