Posts: 1,769
Threads: 410
Joined: Feb 2003
is there a differ way to make a window bigger than the monitor it's on?
siz doesn't do it.
Posts: 12,086
Threads: 142
Joined: Dec 2002
Add/remove some styles.
Macro
Make window bigger than screen
int w=win("Notepad" "Notepad")
int st=GetWinStyle(w); SetWinStyle w st|WS_POPUP~WS_THICKFRAME
siz 5000 3000 w
int cx cy; GetWinXY w 0 0 cx cy; out F"{cx} {cy}"
10
siz 500 300 w
SetWinStyle w st
Posts: 1,769
Threads: 410
Joined: Feb 2003
rats...does'nt work for Remote Desktop Connection but works else where.
thanks