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 IamaSherpa 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: *

  • Users: aceng
  • Order by date
  1. aceng

    Problem in Serial Printer when printing

    if you want to print text to serial printer you can open serial printer as an output file, like this<br><br>Open &quot;Lpt1:&quot; for output as #1<br>but if your printer is not ready program will not respond until the printer is ready.<br><br>or you can use object printer, like...
  2. aceng

    transferring multiple selections from a listbox into word

    to get selected value in multiple selection listbox is you have to check selected property for each listitem<br>for example<br><br>sub getList()<br>dim i as byte<br>For i = 0 to List1.ListCount-1<br>&nbsp;&nbsp;&nbsp;&nbsp;If List1.Selected(i)=True...
  3. aceng

    using the UPDATE sql statement

    I think you forgot to put single quote at lockoutuser value.<br>try this.<br><br>UPDATE [AgentPayDB!]LogIN SET LockOutUser = 'Y' WHERE LogIn.[User ID]=&quot; & &quot;'&quot; & strUserID & &quot;'&quot; & &quot; AND LogIn.[User Password]=&quot; & &quot;'&quot; & strUserPassword &...

Part and Inventory Search

Back
Top