|
CloseHelpWindow(HWnd)
|
Close the help window
|
|
CreateHierarchy(TStrings,TTreeView,TStrings)
|
Fills a tree view with a class hierarchy which is defined by the TStrings as TClass=TAncestorClass
|
|
CreateMenuItemChildren(TMenuItem,TStrings,TNotifyEvent,Boolean)
|
Creates child menu items of the MenuItem for every string in the Strs TStrings parameter.
|
|
DisplayHelpWindow(String,String)
|
Overloaded. Displays an html help window based on a help file.
|
|
DisplayHelpWindow(String,String,String,String,HKEY)
|
Overloaded. Displays a help window and optional topic based on a registry key for the location of the help file, e.g.,
Delphi
|
DisplayHelpWindow( '\Software\RiverSoftAVG', '\help\IE.chm', 'InstallDir', 'html\hs1010' );
|
|
|
DisplayHelpWindow(String,UINT,DWORD)
|
Overloaded. Displays an html help window based on a help file.
|
|
FindTextInTreeView(TCustomTreeView,String)
|
Finds and returns the node of the tree view where the Text property equals the Text parameter. If no match is found, the function returns nil.
The comparison is case-insensitive.
|
|
FindTreeNode(TTreeView,String,Boolean,TCompareStringsOption)
|
Overloaded. Finds and returns the tree node where the Caption property equals the Text parameter. The function searches all children of the tree until the first match is found. If no match is found, the function returns nil.
|
|
FindTreeNode(TTreeView,TObject)
|
Overloaded. Finds and returns the tree node where the Data property equals the Data parameter. The function searches all children of the tree until the first match is found. If no match is found, the function returns nil.
|
|
FindTreeNode(TTreeView,TTreeNode,String,Boolean,TCompareStringsOption)
|
Overloaded. Finds and returns the tree node where the Caption property equals the Text parameter. The function searches all children of the Item parameter, all of their children, etc until the first match is found. If no match is found, the function returns nil.
|
|
FindTreeNode(TTreeView,TTreeNode,TObject)
|
Overloaded. Finds and returns the tree node where the Data property equals the Data parameter. The function searches all children of the Item parameter, all of their children, etc until the first match is found. If no match is found, the function returns nil.
|
|
HaveNagged(String)
|
Represents method HaveNagged(String).
|
|
IsDelphiRunning
|
Returns true if Delphi is running. Used for evaluation components.
|
|
IsSubmenuVisible(TMenuItem)
|
Returns true if any submenu under the menu item is visible, excluding separator bars.
|
|
ShowNagScreen(String)
|
Shows the nag message if Delphi is running and the nag message has not been previously shown this application session.
|
|
SortGrid(TStringGrid,Integer,Boolean,Boolean,Boolean)
|
Overloaded. Sorts an entire TStringGrid based on the text in the SortCol column.
|
|
SortGrid(TStringGrid,Integer,Integer,Integer,Boolean,Boolean)
|
Overloaded. Sorts a range of rows of a TStringGrid based on the text in the SortCol column.
|