Private Sub TxtAdults_Change()
TxtAdults.Text = InputBox("Please input number of adult tickets needed.")
End Sub
Private Sub TxtKids_change()
TxtKids.Text = InputBox("Please input number of kids tickets needed.")
End Sub
Private Sub LblTotal_Click()
LblTotal = (LblAdultPrice * TxtAdults) + (LblKidsPrice * TxtKids)
End Sub
Private Sub Cmd_Extras_Click()
Frm_tours.Hide
Frm_Extras.Show
End Sub
Basically i want to carry the amount on LblTotal onto my next form. How can i do this?
Thanks Guys.
Fortran
Mod Edit:
Added in code tags. When posting code, please use tags like below. Thanks.

New Topic/Question
Reply
MultiQuote








|