Answer to your first question
Here's how to display the length of time your app has been running. Start a new project, drop a label and a timer onto the form, and paste the following code into your forms code module:
Code:
Option Explicit
Private StartTime As Date
Private Sub Form_Load()
Timer1.Interval = 60
StartTime = Now
End Sub
Private Sub Timer1_Timer()
Dim RunTime As Date
RunTime = Now - StartTime
Label1 = "Running time: " & Format(RunTime, "hh:mm:ss")
End Sub
[Edited by seaweed on 10-08-2000 at 06:07 PM]