I have a question, I have a MenuStrip with several elements and I wanted to know if there is any way to follow an order to enter each element, I explain:
I want you to first enter the "lines" tab and then the "part number" tab and the "conditions" end point
But do not skip that order, is there any way to do it?
I have this code (they are not all elements but this way I call them):
Public frm_pteestampa As FormParteEstampada
Public frm_co As Form_CO
Public Sub abrir_CO()
frm_co = New Form_CO
frm_co.MdiParent = Me
frm_co.Show()
End Sub
Public Sub abrir_Estampa()
frm_pteestampa = New FormParteEstampada
frm_pteestampa.MdiParent = Me
frm_pteestampa.Show()
End Sub
Private Sub ParteEstampadaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ParteEstampadaToolStripMenuItem.Click
Me.abrir_Estampa()
End Sub
Private Sub CondicionesOperacionToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CondicionesOperacionToolStripMenuItem.Click
Me.abrir_CO()
End Sub
I hope you can help me, thanks ...