Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. andyclt

    Regular Expression problem

    Try this: ValidationExpression="^\d*\.?\d*$" Now you should be able to use whole numbers as well as decimals. -Andy
  2. andyclt

    Force users to update there app

    I use the FileDateTime-Function on application startup to check the date created/modified property of the .exe file currently in use. I compare that to date and time of the .exe file that sits on the server and, if that one is newer, give the user a message to upgrade (you can even check with...
  3. andyclt

    MoveNext not working

    Actually, your 'MoveFirst' statement needs to be outside the loop, otherwise you keep returning to the first record with every cycle. Try it like this: rsJobCost.MoveFirst Do While rsJobCost.EOF = False MsgBox Left(del_date, 4) If Left(del_date, 4) <> YearTxt Then YTD = YTD End...
  4. andyclt

    Printing an Access report in VB6

    Have you tried installing the Access runtime version? It's part of Office Developer (at least the 2000 version, don't know about the 97 version) and you can include it in your application setup program when you use the Package & Deployment Wizard.

Part and Inventory Search

Back
Top