murdock68,
Raising the dead around here will get you labeled a necrophiliac. So next time you need to reference an older/dead thread in your NEW thread, copy its URL into your post.
As for you question, you will need to build a public procedure to pass instructions to. Meaning, lets say that everything you have built is in form1, so you use the above code to instantiate a second copy of form1 but only want to show the time display in this new form1. So you would make a call to this public procedure when you create the form...
Private Sub Command1_Click()
Dim F As Form
Set F = New Form1
F.PublicProcedureName("TIMEONLY")
F.Show
End Sub
and inside this public procedure you would set up the form to show only the timer you want.
However, doing it this way will cause you problems because of the single threaded nature of classic Visual Basic 6.0 because only one timer event will fire at a time. So while your main forms time may change from 5:58 to 5:57, the second form will not change until the main form is done processing. So you could end up with one form with a time of 5:57 and the other form displaying a time of 5:58 for a brief moment and depending upon how much processing goes on, that difference could grow from a moment to a few seconds if not more.
So, how would you rectify this you might ask? Well, you will have to control everything from one form. Which means, that when you make your call to the public procedure in the second instantation of the form, you disable the timers while you set the form up for display. This also means that you would have to move the declaration of Dim F As Form to the general declarations and you might want to also declare a boolean variable also so that you can test to see if you have shown the timer only version of your form. So then your timer code would look something like...
Me.TimeDisplay = SomeNewValue
If IsTimerOnlyFormShown = True Then TimeOnlyForm.TimeDisplay = SomeNewValue
I hope you get the meaning of this, if not. please start a new thread and copy the url of this thread into your new thread.
Good Luck