Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
visual basic messagebox help?
MessageBox.Show(CStr("subtotal is: " & dbltotal.ToString("C") & vbNewLine & "tax is: " &
dblTax.ToString("C") & vbNewLine & "Total is: " & dbloutput.ToString("C"))))
im trying to add a title to this. so when the message box comes up its title will be "Cody's store 12/7/2012"
1 Answer
- JessLv 58 years agoFavorite Answer
MsgBox("prompt", MsgBoxStyle.StyleX, "Title")
is the syntax, youd just want to add ===> ,"your title here" before closing last parenthesis
Source(s): http://forums.whirlpool.net.au/archive/250851 http://msdn.microsoft.com/en-us/library/system.win... http://www.thevbprogrammer.com/VBNET_08/08-00A-Msg...