forms with AT

adrian.perez

New Member
Hi guys,
i have a few programs i'm trying to upgrade to .NET but i'm having problems with de AT statement. Something like this doesn't produce anything in .NET

FORM
RECT-FRAME AT ROW 1.4 COLUMN 1.25
RECT-FRAME-LABEL AT ROW 1 COLUMN 3 NO-LABEL SKIP(1)
cust COLON 20
nombw COLON 35 NO-LABEL SKIP(.4)
Ge_Tc_type COLON 20
"( 1 = Ltda. Antigua 2 = S.A. Antigua" AT 35 SKIP
" 3 = Ltda. Nueva 4 = S.A. Nueva )" AT 35 SKIP(1)
WITH CENTERED FRAME a SIDE-LABELS NO-BOX THREE-D WIDTH 80.

the two lines with the AT statement doesn't appear in the .NET version, but they appear in the character version.
Can anyone tell me what's the problem here ???

Thanks.
 
This will work


FORM


cust COLON 20
nombw COLON 35 NO-LABEL SKIP(.4)
Ge_Tc_type COLON 20
"( 1 = Ltda. Antigua 2 = S.A. Antigua" AT 35 SKIP
" 3 = Ltda. Nueva 4 = S.A. Nueva )" AT 35 SKIP(1)
WITH FRAME a SIDE-LABELS NO-BOX WIDTH 80.
 
Top