Scheduled Maintenance on Friday, March 12th, 2010
We will be performing maintenance on some database and web application servers for migration to our new data center location with faster connectivity after 7pm Pacific time on Friday and throughout Saturday March 13th, 2010.
We will keep our systems up as much as possible during this maintenance time. We will keep the outage as short as possible, and we apologize for the inconvenience.
[All]
Porting an application using Winhelp32 to BDS 2006/7 the HelpJump calls appear not to work.
Abstract: In porting a Delphi or C++Builder application using a Winhelp32 help file to BDS 2006/7 you might find that calls to HelpJump refuse to work
This is due to an issue in WinHelpViewer.pas, the issue has been reported and should be resolved in later versions. But by modifying WinHelpViewer.pas as follows and adding the unit to your Delphi or C++Builder project the problem should be resolved.
This will of course only work for NONE package using applications.
function TWinHelpViewer.UnderstandsTopic(const Topic: String): Boolean;
begin
if Assigned(WinHelpTester) then
Result := WinHelpTester.CanShowTopic(Topic, HelpFile(''))
else
Result := True;
Result := False;
end;
Author: Roy Nelson