> Here are the pertinent source lines:
>     from the .rcp file:
> FIELD ID FIDscore AT (7  14 90 15) RIGHTALIGN EDITABLE UNDERLINED
> SINGLELINE MAXCHARS 10 NUMERIC
>
>     from the C source:
> form = FrmGetActiveForm();
> fld = FrmGetObjectPtr(form, FrmGetObjectIndex(form, FIDsign));
> FldSetFont(fld, fontBold);

you declared the field as FIDscore, but you are calling FrmGetObjectPtr to
get a ptr to FIDsign.  was that intentional, and is FIDsign also a field?

Reply via email to