Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:44:10Zhttp://stackoverflow.com/feeds/question/1078472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078472/using-findvclwindow-to-call-winhelp32-winxp-pro-sp3-32bit-in-delphi0Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in DelphiHX_unbanned2009-07-03T09:05:33Z2009-07-03T10:43:49Z
<p>what is wrong there?</p>
<pre><code>procedure TForm1.VCLHelpClick(Sender: TObject);
var Ctrl : TWinControl;
begin
Ctrl := FindVCLWindow(Mouse.CursorPos);
if Ctrl <> nil then
if Form2.Cursor = crHelp then begin
if Ctrl = CreatorEdit then Application.HelpCommand(HELP_CONTEXT,001);
if Ctrl = EditorEdit then Application.HelpCommand(HELP_CONTEXT,002);
if Ctrl = UpdaterEdit then Application.HelpCommand(HELP_CONTEXT,003);
if Ctrl = IdeaEdit then Application.HelpCommand(HELP_CONTEXT,004);
if Ctrl = PorterEdit then Application.HelpCommand(HELP_CONTEXT,005);
end;
end;
</code></pre>
<p>The idea is simple - i have form border icons for Help button and when i click it, cursors changes to crHelp. If i click under control for any of IFs, it invokes Help System and Opens associated help file with context from command. But it doesnt work ... Is this because I have not added support for KLink / ELinks in Help file itself?</p>
<p>For help authoring and developing I am using ShalomHelpMaker Software.</p>
http://stackoverflow.com/questions/1078472/using-findvclwindow-to-call-winhelp32-winxp-pro-sp3-32bit-in-delphi/1078527#10785272Answer by Gamecat for Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in DelphiGamecat2009-07-03T09:20:25Z2009-07-03T10:11:20Z<p>Have you tried debugging the code? And can you tell us what part went wrong.</p>
<p>Besides, why don't you use the helpcontext like:</p>
<pre><code>procedure TForm1.VCLHelpClick(Sender: TObject);
var Ctrl : TWinControl;
begin
if Form2.Cursor <> crHelp then // Are you sure this is Form2???
Exit;
Ctrl := FindVCLWindow(Mouse.CursorPos);
if Ctrl = nil then Exit;
Application.HelpCommand(HELP_CONTEXT, Ctrl.HelpoContext);
end;
</code></pre>
<p>Looks like FindVCLControl does some other things. But the following code works:</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
var
ctrl : TControl;
point : TPoint;
begin
point := Mouse.CursorPos; // Mouse pos at screen
Dec(point.X, Left); // Adjust for window.
Dec(point.Y, Top);
Dec(point.Y, GetSystemMetrics(SM_CYCAPTION)); // Adjust to client area.
ctrl := ControlAtPos(point, True, True, True);
// Do something with the control
end;
</code></pre>
<p>You probably need some more tweaking, but this works to get the control of a window from the position.</p>
http://stackoverflow.com/questions/1078472/using-findvclwindow-to-call-winhelp32-winxp-pro-sp3-32bit-in-delphi/1078808#10788080Answer by HX_unbanned for Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in DelphiHX_unbanned2009-07-03T10:43:49Z2009-07-03T10:43:49Z<p>Working code:</p>
<pre><code>procedure TForm1.VCLHelpClick(Sender: TObject);
var WCtrl : TWinControl;
begin
WCtrl := FindVCLWindow(Mouse.CursorPos);
if WCtrl <> nil then
Application.HelpCommand(HELP_CONTEXT, wCtrl.HelpContext);
end;
</code></pre>
<p>P.S. all previous code probobly was ok too, but i rechecked my event handlers and found that in one tlabel it was missing ( althought when I clicked to the ones that had onclick, it did not work). Plus ... problem probobly was the faulty cursor check.</p>
<p>Ok, thanks for support, guys!</p>