I solved it with a simple "show window" in the SHOW of the form.
But it work also if you call the show window at the init of the form.
.Mat
Code:
PROCEDURE SHOW(nStyle)
dodefault(nStyle)
IF thisform.WindowType == 1
SHOW WINDOW (thisform.name) SAME
ENDIF
...
ENDPROC
But it work also if you call the show window at the init of the form.
.Mat