Try this different types of msgbox
Private Sub Command1_Click() MsgBox Text1.Text 'Message Box with Yes/no options MsgBox Text1.Text, vbYesNo MsgBox Text1.Text, vbCritical 'Message Box displaying Information MsgBox Text1.Text, vbInformation xx = MsgBox(Text1.Text, vbMsgBoxSetForeground) 'Message Box with Yes/No/cancel options MsgBox Text1.Text, vbYesNoCancel End Sub
|
| Author: Deepika Haridas 07 Jul 2009 | Member Level: Diamond Points : 1 |
Hi Jaya Kumar,
Provide proper comments along with your code and proper title.
Regards, Deepika Editor
|