mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 15:32:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			330 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			330 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
unit regappforms;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
uses
 | 
						|
  Classes, SysUtils, appform, dbappform;
 | 
						|
 | 
						|
procedure RegisterAppForms;
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
uses custforms;
 | 
						|
 | 
						|
procedure RegisterAppForms;
 | 
						|
 | 
						|
begin
 | 
						|
  RegisterCustomForm(TAppForm,'AppForms');
 | 
						|
  RegisterCustomForm(TDBAppForm,'AppForms');
 | 
						|
end;
 | 
						|
 | 
						|
initialization
 | 
						|
  RegisterAppForms;
 | 
						|
end.
 | 
						|
 |