home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / ilib_vb / demoall.dp_ / demoall.dp
Encoding:
Text File  |  1996-11-20  |  349 b   |  18 lines

  1. program Demoall;
  2.  
  3. uses
  4.   Forms,
  5.   Udemo in 'UDEMO.PAS' {Form1},
  6.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  7.   Uabout in 'UABOUT.PAS' {AboutBox};
  8.  
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TDemoForm1, DemoForm1);
  14.   Application.CreateForm(TFullSlide, FullSlide);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.