Bryan Nystrom wrote:
> Until I get R6, I guess I'll have to poke the correct attribute into
> the field each time I create/draw one.
Depending on bow many fields your app has (mine has tons), this may be
easier: in your main event loop, add special code to handle the frmOpen
event right after EvtGetEvent. Fetch the active form with
FrmGetActiveForm(), then loop through all the objects in the form and
fixup all the field underlines.
This keeps the workaround all in one place, instead of scattered in many
different forms, so it's easy to implement and easy to remove when you
get R6. Worked for me.
-slj-