visual_guiYou can separate the definition of a window layout from the program by storing it on a remote server for example here http://reboltutorial.com/source/rebolformdefinition.txt contains this:


    h2 "Account Information"

    text "Please enter your account details here."

    across
    label "First name" tab field "Enter First Name"
    return
    label "Last name" tab field "Enter Last Name"
    return
    label "Email" tab field
    return
    label "City" tab field
    return
    tab button "Submit"
    button "Cancel"

And you can then build your view with


window-layout: load http://reboltutorial.com/source/rebolformdefinition.txt
window: layout window-layout

view/title window "Account Form"

Bookmark and Share