|
Contents | Previous | Next | Subchapters |
| Syntax |
easydlg(caption, buttons, message) |
| See Also | addlabel |
"",
no message is displayed.
clear
caption = "Message_callback"
buttons = { "Continue", "Cancel"}
message = { ...
"If you continue loading", ...
"the data will be over written" ...
}
easydlg(caption, buttons, message)
function Message_callback(button) begin
print "button =", button
end
Message_callback
will be called and it will print the text
button = Continue
in the Command window.