MsgBox- Shows a message box
Shows data inside a message box window.
- MsgBox(V1,V2 ... Vn)
Parameters:
- (var) V1: value to be displayed;
- (var) V2: value to be displayed;
- (var) Vn: value n to be shown;
Description:
Use MsgBox to display values, whether direct or in variables. The instruction is useful only when debugging the code, to check the correctness of the data. A final graph should never contain MsgBox instruction. The instruction accepts any values or variables you want to show. Each value must be separated by a comma.