0% found this document useful (0 votes)
37 views1 page

Codes

The document contains code for handling click events on buttons and labels to bring different user controls to the front of a form. Button clicks trigger specific user controls to display for food, drinks, orders, about, and contact information. Empty subroutines are included for control paint events and loading an order user control.

Uploaded by

Deckster Devera
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views1 page

Codes

The document contains code for handling click events on buttons and labels to bring different user controls to the front of a form. Button clicks trigger specific user controls to display for food, drinks, orders, about, and contact information. Empty subroutines are included for control paint events and loading an order user control.

Uploaded by

Deckster Devera
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.

EventArgs)
Handles main.Click
Ucfood1.BringToFront()
End Sub

Private Sub Panel5_Paint(ByVal sender As System.Object, ByVal e As


System.Windows.Forms.PaintEventArgs)

End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles drink.Click
Ucdrinklist1.BringToFront()

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles food.Click
Ucfoodlist1.BringToFront()
End Sub

Private Sub Panel5_Paint_1(ByVal sender As System.Object, ByVal e As


System.Windows.Forms.PaintEventArgs)

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Button3.Click
Ucorder1.BringToFront()

End Sub

Private Sub Ucorder1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Ucorder1.Load

End Sub

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Button4.Click
Aboutus1.BringToFront()

Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Button5.Click
Contactus1.BringToFront()

You might also like