mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 16:41:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			443 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			443 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| program HTMLHelpSample;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| uses
 | |
|   {$IFDEF UNIX}{$IFDEF UseCThreads}
 | |
|   cthreads,
 | |
|   {$ENDIF}{$ENDIF}
 | |
|   Interfaces, // this includes the LCL widgetset
 | |
|   Forms
 | |
|   { add your units here }, HtmlHelp2Unit1, TurboPowerIPro, HtmlHelp2Viewer;
 | |
| 
 | |
| begin
 | |
|   Application.Title:='htmlhelp1';
 | |
|   Application.Initialize;
 | |
|   Application.CreateForm(TForm1, Form1);
 | |
|   Application.CreateForm(THelpViewerForm, HelpViewerForm);
 | |
|   Application.Run;
 | |
| end.
 | |
| 
 | 
