>> Howdy,
>>
[quoted text clipped - 12 lines]
>>
>> Many thanks,
>Is it sized correctly and not centered in the screen? Is the form maximized?
Hi Jeff,
I think you may have pointed me in the right direction...
It did have a "maximize()" on its setFocus, but I moved it
to the form's open, and now it seems fine.
I thank you for your help,

Signature
Kenneth
If you email... Please remove the "SPAMLESS."
Jeff Shoaf - 13 Sep 2008 00:06 GMT
Great!
For future reference, consider putting any initialization code in the
form's init() method - that's what it's for and you don't have to worry
about where it goes in the open() method. The open() event catches the
open() event for each object on the form as it bubbles up, hence the
default if...then...else statement in the open() event.
Having the maximize() in the form's setFocus() event will surely
irritate anyone who's trying to view the form at less than maximum so
that they can look at another app at the same time!
>
>>> Howdy,
[quoted text clipped - 24 lines]
>
> I thank you for your help,