Edit box not updating

Started by hmspe, July 10, 2010, 11:55:49 AM

Previous topic - Next topic

owenwengerd

That first edit box has EventInvoke set to 1 (Asynchronous), so the event is not executing until the dialog is already closed. Since EventInvoke is hidden on modal forms, the only way to change it is to cut the control and paste it into a modeless form, change the Event Invoke property to zero, thn copy and paste the modified control back into the original form.

I think the design intent is to preserve but ignore that property on modal forms, but I'll have to do some investigating to determine why this situation is allowed to arise and how the problem can be fixed.

hmspe

Owen,

Thanks for the update.  Good to know I wasn't completely losing my mind....

Martin