I'm trying to add a gui to my program but have difficulties doing so.
>> system/version
== 3.0.0.4.40
Downloaded from http://atronixengineering.com/downloads.html
First, where can I find examples and documentation for the guie
of my interpreter version?
There is some documentation, but it doesn't work.
REBOL []
do %./r3-gui.r3
view [
title "Simple Form"
panel 2 [
label "Name:"
field
label "Message:"
area
]
button "Cancel" close
]
The error message:
** GUI ERROR: Cannot parse the GUI dialect at: panel 2 [
label "Name:"
field
label "Message:"
area
]
button "Cancel"
Edit: panel 2
returns an error. If I remove it, there's another error with button
.