|
Contents | Previous | Next | Subchapters |
| Syntax |
easydlg(caption, buttons) |
| See Also | adddialog , pushbutton |
clear
caption = "Buttons_callback"
buttons = {"Ok", "Cancel"}
easydlg(caption, buttons)
function Buttons_callback(button) begin
print "button =", button
end
Buttons_callback
will be called and it will print the text
button = Cancel
in the Command window.