Hi,
When I open a dialog and then close it, the main form reverts to the first tabindex. Is there any way to make it preserve the tab it was in before the dialog was opened?
Thanks,
Andrew
Hi,
When I open a dialog and then close it, the main form reverts to the first tabindex. Is there any way to make it preserve the tab it was in before the dialog was opened?
Thanks,
Andrew
Servoy remembers the chosen tab. But: if you close a formInDialog, the onShow event of the underlying form will be fired. I suppose in that event, you jump to the first tab?
Yes, that’s the problem… Is there anyway to have the onShow event not fire?
You are the programmer! Some people would fill a global (e.g. globals.blockOnShow) and ask for that global in the onShow event…
Fair enough
I thought maybe there was a condition in the showDialog() method or something. I can work with this though.