Jun 24, 2003 #1 W whosyodaddy Well-known member Joined Jun 23, 2003 Messages 83 is it possible to put a link in a message box? also, can you link to another form? Last edited by a moderator: Jun 24, 2003
Jun 24, 2003 #2 M mutant Well-known member Joined Jan 19, 2003 Messages 1,771 Location Enfield, CT, USA User Rank *Expert* There are no links in it, but you can open a new form from it. Lets say you have a messagebox with OK button. Code: Dim formtwo as Form2 If MessageBox.Show("Open new form?") = DialogResult.OK Then formtwo = new Form2 formtwo.Show() end if This checks if the user hits the OK button, if yes, then open the new form.
There are no links in it, but you can open a new form from it. Lets say you have a messagebox with OK button. Code: Dim formtwo as Form2 If MessageBox.Show("Open new form?") = DialogResult.OK Then formtwo = new Form2 formtwo.Show() end if This checks if the user hits the OK button, if yes, then open the new form.