Re: FOLDER TABS AND TABLES

"Jon Earle" <[email protected]> Tue, 31 Jan 2006 12:15:02 -0500 (EST)
Newsgroups gmane.comp.lang.4gl.fourjs.user
Message-ID <[email protected]>
Schlykow wrote:

> my question: Is it possible, to mix Folders and Tables in a Form ?

Yes, you can.  You would use something like:

layout
vbox

folder
page pg1 (blah blah)
...
end -- page

page pg2 (blah blah)
...
end -- page
end -- folder

table
{
...
}
end -- table

end -- vbox
end -- layout

Very simple example that will put a folder with two tabs above a table.  You
can, of course, put tables onto folder tabs, etc.

Cheers!
Jon