Re: Help with multi-tabbed form ... OPal ... Paradox 10



andrewnp wrote:
I'd like the form, to open up with the "first" tab, and its forms visible. I can't find out how this is done using OPal.

Include a moveTo() in the open event on the Notebook object. E.g., if the Notebook's first tab was named Andrew01 the code would look like this:


method open(var eventInfo Event)

;make sure Andrew01 tab is first
Andrew01.moveTo()

endMethod
.