FOLDER TABS AND TABLES

"Schlykow" <[email protected]> Tue, 31 Jan 2006 17:44:30 +0100
Newsgroups gmane.comp.lang.4gl.fourjs.user
Message-ID <[email protected]>
Dear Readers,

 

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

 

My several experimental  went into this error:

TABLE
# A grammatical error has been found at 'TABLE', expecting END.
# See error number -6803.
{
 [x|num|txt                           ]
 [x|num|txt                           ]
}
END

 

The form without ,TABLE' compiles very well:

(see below)

 

Could anybody give me an (simple) example for the

Syntax, to mix a 'TABLE' into this form, or is it

Impossible ?

 

Thankyou

 

God bless you all

Georg

 

 

THE FORM:

# not complete but with all 'SYNTAX WORDS'

 

DATABASE blabla 

LAYOUT
FOLDER
PAGE(text="Adresse")
GRID
{
[mx2            ]:[feld             |numm      ]                 
(snip --->

(<--snap )
}
END
END

PAGE(text="Weitere Angaben")
VBOX
GRID
{
[mx3               ]:[grup  ]
(snip --->

(<--snap )
}
END
END
END
END
TABLES
adress

ATTRIBUTES
Label mx2  = FORMONLY.txx_Kennung
;
Label mx3  = FORMONLY.txx_Adressengruppe
;


ButtonEdit feld  = adress.join_feld,    UPSHIFT,  action=f9, image="open";
ButtonEdit numm  = adress.nr_adress,    UPSHIFT,  action=f9, image="open";
ButtonEdit grup  = adress.nr_adrgr,     UPSHIFT,  action=f9, image="open";

INSTRUCTIONS
DELIMITERS "  "

{
}