06 2009 档案
摘要:procedure TForm1.ApplicationEvents1Message(var Msg: tagMSG; var Handled: Boolean);var mPoint : TPoint;begin if IsChild(WebBrowser1.Handle, Msg.Hwnd) and ((Msg.Message = WM_RBUTTONDOWN) or (Msg.Message...
阅读全文
摘要:var Style: Integer;begin Style := GetWindowLong(Handle, GWL_STYLE);//wnd为控件句柄 if (Style and (WS_VSCROLL)) <> 0 then Caption := 'Yes' else Caption := 'No';end;
阅读全文