http://hsp.tv/play/pforum.php?mode=pastwch&num=58926
↑の投稿の
の第二・三ウィンドウの『×』を押したときにすべて消えないようにするには
#uselib "user32.dll" #func SetParent "SetParent" int,int screen 0,600,400,0 hwnd0 = hwnd title "第一ウィンドウ" screen 1,400,200,0 hwnd1 = hwnd title "第二ウィンドウ" screen 2,200,100,0 hwnd2 = hwnd title "第三ウィンドウ" SetParent hwnd1,hwnd0 ;SetParent 子にしたいウィンドウのハンドル,親にしたいウィンドウのハンドル SetParent hwnd2,hwnd1
どうすればよいでしょうか?