怎样用发送消息来改变活动窗口的最大宽度和高度(10分)

  • 主题发起人 主题发起人 zh06j60w
  • 开始时间 开始时间
Z

zh06j60w

Unregistered / Unconfirmed
GUEST, unregistred user!
窗口的 MaxWith和MaxHeight
 
怎样用发送消息来改变活动窗口的 MaxWidth和MaxHeight
 
WndProc(var Message: TMessage)<br>begin<br> &nbsp;From1.Maxwith := Message.lparam;<br> &nbsp;From1.MaxHeight := Message.wparam;<br> &nbsp;From1.Flush;(忘了,反正就重新刷新一下了)<br>end;
 
From1.refresh;
 
窗口是其他程序的焦点窗口,不是本程序的窗口
 
怎样使用SendMessage()函数来改变窗口的MaxWidth和MaxHeight
 
function SendMessage(hWnd: HWND; Msg: UINT;wParam:WPARAM; lParam: LPARAM):LRESULT;stdcall;
 
能把改变窗口的MaxWidth和MaxHeight 的例子给我吗
 
SetWindowPos($000408E8,HWND_TOPMOST,0,0,200,200,0);
 
var<br>Result:THandle;<br>begin<br>Result:=Findwindow(nil,'Form1');//Form1应用程序标题<br>SetWindowPos(Result,HWND_TOPMOST,0,0,100,200,0); &nbsp; &nbsp;//左上角开始0,0,100宽,200高<br>end;
 
能设置最大化窗口的大小吗
 
??????什么意思?
 
后退
顶部