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 SkipVought 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: Eurt
  • Order by date
  1. Eurt

    Running an aplication as a SYSTEM process

    happyabc: simply click on the thread and it will appear in a new window!
  2. Eurt

    Running an aplication as a SYSTEM process

    It would be so nice if you guys could include the thread that you found!
  3. Eurt

    Visual Basic as a service

    I need to do something similar: 1. Run vb prog as a service 2. When time reaches a specified time (e.g. 12:43 pm), play a file. I too would like to know how to run a prog as a service (with a little icon in the task bar so that a user can always close the prog if they desire). Thanks
  4. Eurt

    How to check how long my application was open?

    SHelton, How do you past you code in like that?
  5. Eurt

    Preventing spaces and tab characters

    Private Sub Command1_Click() If InStr(1, Text1.Text, " ") <> 0 Then MsgBox ("No spaces please") End If End Sub
  6. Eurt

    How do I run a VB program once every 24 hours?

    How do we make the program run all the time (system tray!) I like the idea of having it go to sleep, wake up every XX minutes, and then go back to sleep again. How can that be done? The more info the better. Thanks guys...
  7. Eurt

    Open a txt file into a text box?

    Not the most elagant, but will work! Private Sub Form_Load() Dim fso, finput, strFileAsString Set fso = CreateObject(&quot;Scripting.FileSystemObject&quot;) Set finput = fso.OpenTextFile(&quot;C:\...\abc.txt&quot;) Do While (finput.AtEndOfStream &lt;&gt; True)...
  8. Eurt

    URGENT: Need to get this computer to work tonight

    Also ensure that the keyboard you are booting up with is a PS2 type and not USB. Some bios don't recognize USB ports, and the system would only realize that you have a usb keyboard when Windows loads up (along with it's usb drivers). Try connecting an older PS2 keyboard and hit...
  9. Eurt

    Advanced programming style discussion

    I tried running the following piece of code: Private Sub Command1_Click() Dim rtn() As String Dim iX As Long rtn = ReturnArray(10) For iX = 0 To UBound(rtn) Debug.Print rtn(iX) Next rtn = ReturnArray(7) For iX = 0 To UBound(rtn)...

Part and Inventory Search

Back
Top