Computer Science, asked by roshanimhatre2001, 1 year ago

describe types of MsgBox() window in vb. net

Answers

Answered by anoshiba15
4

Required. String expression displayed as the message in the dialog box. The maximum length of prompt is approximately 1024 characters, depending on the width of the characters used. If prompt consists of more than one line, you can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or carriage return – linefeed character combination (Chr(13) & Chr(10)) between each line.

Optional. numeric expression that is the sum of values specifying the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. If omitted, the default value for buttons is 0.


Answered by Arslankincsem
1

The message box can be referred as the significant type of the VB (Visual Basic) window in which one can display the message or any information to the users.


It can display the message, any optional icon, any kind of the caption for the title bar, and the command buttons in case of message box.


There are two types of functions in VB i.e. built in functions and the programmer created functions. VB provides MsgBox function to support the message boxes.

Similar questions