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 Mike Lewis 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. EveRYeaR

    Find-a-file

    'This is for anyone who wants to know about the<br> 'FindFirstFile. Your sub will work fine but the<br> 'lpFileName$ (Your FileToFind$) requires the full<br> 'path.<br> <br> Public Function FindFile(FileToFind as String)as String<br> Dim A as long<br> A& = FindFirstFile(FileToFind$...
  2. EveRYeaR

    How to use delay in Visual Basic

    I use something like this.<br> <br> <br> Sub Pause(interval)<br> <br> X = Timer<br> <br> While Timer - X &lt; Val(interval)<br> DoEvents<br> Wend<br> <br> End Sub

Part and Inventory Search

Back
Top