Mykro Posted August 31, 2003 Posted August 31, 2003 Could someone post an example for me on how this msgbox should look like? What I have won't work.. This what I've attempted so far msgbox("Hello ", txtName.text, _ "Hello from Visual Basic.NET", MsgBoxStyle.Information, "Hello User Message") Thanks Quote
pendragon Posted August 31, 2003 Posted August 31, 2003 Try This MsgBox("Hello " & txtName.Text & vbCrLf & "Hello From Visual Basic.NET", MsgBoxStyle.Information, "Hello User Message") Quote
Administrators PlausiblyDamp Posted August 31, 2003 Administrators Posted August 31, 2003 Although you really should use the MessageBox.Show command under .Net messagebox.Show ("Hello " & txtName.Text & vbCrLf & "Hello From Visual Basic.NET","Hello User Message",MessageBoxButtons.OK,MessageBoxIcon.Information) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Mykro Posted August 31, 2003 Author Posted August 31, 2003 Thanks Thanks... Both work.. I appreciate the help.. Thank You Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.