Hi Everybody,
How can I disable the "X" on the top of a dialog box?
In FWH I would use "nosysmenu" but it appears I can not do this with FWPPC
Disable "X" on dialog
- Jeff Barnes
- Posts: 912
- Joined: Sun Oct 09, 2005 1:05 pm
- Location: Ontario, Canada
- Contact:
Disable "X" on dialog
Thanks,
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
Re: Disable "X" on dialog
Dear Mr.Jeff,
Have u tried
I have not tried this in FWPPC but this works fine in FWH.
Regards
Anser
Have u tried
Code: Select all
nStyle :=nOR( DS_MODALFRAME, WS_POPUP, WS_CAPTION ) // Removes the ? and x on the dialogue title
DEFINE DIALOG oDlg FROM 10,20 to 27,90 TITLE "My Dialog" STYLE nStyle
Regards
Anser