Is this impossible ?

  • Thread starter Thread starter Ken
  • Start date Start date
K

Ken

Can you make a "LongTimeString" tick backwords using VB . NET 2003

Private Sub Timer1_......
Textbox1.Text = Now.ToLongTimeString
"????????Hummm Tick Backwords"??????"
End Sub
End Class

See what you come up with and post a code sample, I think it mght work if
you can Dim TextBox1 as something and use something like IF LongTimeString
= > +1 then TextBox1.Text = -1
I dont know I can't fig it out, can you?
 
* "Ken said:
Can you make a "LongTimeString" tick backwords using VB . NET 2003

Private Sub Timer1_......
Textbox1.Text = Now.ToLongTimeString
"????????Hummm Tick Backwords"??????"
End Sub
End Class

See what you come up with and post a code sample, I think it mght work if
you can Dim TextBox1 as something and use something like IF LongTimeString
= > +1 then TextBox1.Text = -1
I dont know I can't fig it out, can you?

'Now' will return a 'DateTime'. Have a look at its methods, you can
add/subtract time. Then call the 'ToLongTimeString' method.
 
Back
Top