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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by stgovern

  1. stgovern

    Triggering a VB exe on shutdown

    Depending on the OS, you could use the MMC plug-in, Group Policy Editor (gpedit.msc). One option is the ability to assign programs to run at startup or shutdown. This can be done for the user or the machine. Steve
  2. stgovern

    Triggering a VB exe on shutdown

    Did you want the program to detect a windows shutdown, or you just want the program to run during the shutdown? Steve
  3. stgovern

    Label flickers when contents change

    I think that your timer is updating faster than your updates. With each cycle of the timer, it is refreshing the label unneccesarily. Only update the label when you need too. Try the following: Private Sub gametime_Timer() Dim hour1 As String, min1 As String, sec1 As String sec = sec + 1...
  4. stgovern

    Returning multiple recordsets

    A basic example of traversing through a recordset object with multiple recordsets looks like this: Do While Not (recordset Is Nothing) Do While Not (recordset.EOF) <<Perform actions with the current recordset>> recordset.MoveNext Loop ' Move to next recordset...

Part and Inventory Search

Back
Top