Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to set control text
#6
Function dialog_full_screen
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90CC0AC8 0x0 0 0 224 136 "Dialog"
;3 ActiveX 0x54030000 0x0 0 16 224 94 "SHDocVw.WebBrowser {8856F961-340A-11D0-A96B-00C04FD705A2}"
;4 Button 0x54032000 0x0 0 0 70 14 "Full screen (F11)"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040701 "*" "" "" ""

str controls = "3"
str ax3SHD
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,DT_SetAutoSizeControls hDlg "1m 2m 3s"
,DT_SetAccelerators hDlg "4 F11"
,
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
,case 4
,int-- t_full; t_full=!t_full
,sub.FullScreen hDlg t_full
ret 1


#sub FullScreen
function w full

if full
,max w
else
,res w

;This code just makes the window maximized or not.
;Replace it with code that makes the window really full-screen or not.
;I don't know a simple way, probably need to resize the window etc.


Messages In This Thread
How to set control text - by win - 04-04-2018, 11:02 AM
RE: How to set control text - by Gintaras - 04-04-2018, 12:44 PM
RE: How to set control text - by win - 04-04-2018, 01:10 PM
RE: How to set control text - by Kevin - 04-04-2018, 09:09 PM
RE: How to set control text - by win - 04-18-2018, 11:55 PM
RE: How to set control text - by Gintaras - 04-19-2018, 04:51 AM
RE: How to set control text - by win - 04-19-2018, 06:38 AM
RE: How to set control text - by win - 04-20-2018, 02:02 AM
RE: How to set control text - by Kevin - 04-20-2018, 03:41 AM
RE: How to set control text - by win - 04-20-2018, 03:52 AM
RE: How to set control text - by Kevin - 04-20-2018, 04:12 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)