"J. Klapste" wrote:
> I'm calling UpdateTextField() in most cases during the frmOpenEvent 
> in the form handler, followed by a FrmDrawForm(FrmGetActiveForm()) 

There's your problem, the order is backwards.  Call FrmDrawForm first
before drawing anything else on the screen.

This is what is happening: the first FrmDrawForm call is where the
screen background gets saved, which gets restored later when the form
closes.  Since your fields are drawn before that, they are getting
included in the saved background, and "restored" later.

-slj-

Reply via email to