What is the difference between Msgbox Statement and MsgboxQ
function?
Answers were Sorted based on User's Feedback
MsgBox is a built in VB function which displays a Message
Box and MsgBoxQ is a function defined by the user.
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / pusparghya das
MsgBox statement only displays the message.
MsgBoxQ function displays a message in a dialog box and
wait for the user t click a button,and returns an integer
indicating which button the user has been clicked.
Example for MsgBox function
x= Msgbox ("Do you ant to delete." ,VBYesNO)
if you press yes. The x value is 6
if you press No. The x value is 7
Is This Answer Correct ? | 9 Yes | 2 No |
what are the Types of Modal windows in VB?
What are the new events in textbox that has been included in VB6.0
Write the Steps in Creating an ActiveX Control?
How do I use GetPrivateProfileString to read from INI files?
Explain about Caturing Baseline.
what is Type Library and what it's purpose?
what are the Control Categories?
What is the difference between message box
How can you filter out specific type of file using file system controls?
How do I create controls dynamically (at run-time)?
Data Control missing from toolbox when I use VB under NT3.5. Why?
What does the Implements statement do?