Okay, so I made stuff already, but when I see someone's VB work, they have..like a 'help' button or something close to that.
Is this correct?
Code:
Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click
Dialog1.Enabled = True
End Sub
or
Code:
Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click
Dialog1.Text = Time0PassedBy.ToString
End Sub
Dialog1 is my..public class name, well, when I press on my ''Help'' button, Im trying to get it to show my ''Dialog1'' which explains the stuff, but I don't seem to code it right because the Dialog doesn't show up when I press the help button. So can someone show my the right way?
I know its something like
Code:
Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click
___________ <- I dont know how to make that when i press my button20 it has the dialog pop up
End Sub
All help will be appreciated, I really need the help..
Thanks!