|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Bold text in MsgBox controlIs it possible to include one line of bold text followed by one line of
regular text in the MsgBox control? What I would like to see is the following lines <Bold>The text you entered isn't an item in the list.<Bold> <Regular>Select an item from the list, or enter text that maches one of the listed items.<Regular> "genojoe" <geno***@discussions.microsoft.com> wrote in message Not to my knowledge. As an alternative though you could use a relativelynews:A9395C32-5454-4F9B-A122-C8412BABDD61@microsoft.com... > Is it possible to include one line of bold text followed by one line of > regular text in the MsgBox control? What I would like to see is the > following lines > <Bold>The text you entered isn't an item in the list.<Bold> > <Regular>Select an item from the list, or enter text that maches one of the > listed items.<Regular> simple form to replace MessageBox. If you want to go one step further and retain all the functionality of MessageBox as well as having the option to boldface (et al) selected portions of the string you could build a Class that Inherits System.Windows.Forms.MessageBox and use it in place of MessageBox. Hello genojoe,
MyndPhlyp offers an excellent solution. I would question the practicality of such a msgbox though. It is fairly useless. More than that.. it's annoying. I would opt to use an ErrorProvider control instead. -Boo Show quoteHide quote > Is it possible to include one line of bold text followed by one line > of > regular text in the MsgBox control? What I would like to see is the > following lines > <Bold>The text you entered isn't an item in the list.<Bold> > <Regular>Select an item from the list, or enter text that maches one > of the > listed items.<Regular> |
|||||||||||||||||||||||