> > 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?

Oops, my bad. Yes, FIDsign and FIDscore are both fields on the same 
form, and I want to be able to set the font on both.

--
Roger Chaplin
<[EMAIL PROTECTED]>

Reply via email to