Hey guys I need some assistance! (still learning..I'll be there some day).
I've gotten a lot done so far with my project but I am stuck on a couple of different things.
My program has a login screen that occurs after the splash.
Its simply FirstName in textbox1 and LastName in textbox2.
Now, when you click ok form1 starts.
Form1 should have the FirstName LastName as its form1 text title.
I can only get it to show the contents of the textbox1 (that being the firstname). I don't know how to show both the contents of the box's there.
My second problem is I have a form with 2 buttons. A start timer and stop timer.
I can start the timer, then I can stop the timer and displayer the stopped time in a text box. I however need it to show the difference between the 2. I need it to for example say "Its been 12 mins 25 seconds" - or something similar - format doesn't matter too much.
I've gotten a lot done so far with my project but I am stuck on a couple of different things.
My program has a login screen that occurs after the splash.
Its simply FirstName in textbox1 and LastName in textbox2.
Now, when you click ok form1 starts.
Form1 should have the FirstName LastName as its form1 text title.
I can only get it to show the contents of the textbox1 (that being the firstname). I don't know how to show both the contents of the box's there.
Public Class LoginForm1
Friend firstname As String
Friend lastname As String
firstname = TextBox1.Text
firstname = TextBox2.Text
END CLASS
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Text = LoginForm1.firstname
End Sub
My second problem is I have a form with 2 buttons. A start timer and stop timer.
I can start the timer, then I can stop the timer and displayer the stopped time in a text box. I however need it to show the difference between the 2. I need it to for example say "Its been 12 mins 25 seconds" - or something similar - format doesn't matter too much.