CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applications. CForms applications can run on nany type of library supported by the "curses" library. CForms uses a language-based design to define forms. An application may contain C source modules, field pictures, field definitions, literals, and events. CForms applications must be compiled with the CFC compiler and linked with the CFL linker.CForms runs on most Unix SYSV compatible platforms including SunOS, Dell-SVR4, and Diab SYSV.3. It requires a curses library and yacc or GNU Bison. CForms version 2.1 is now available as volume #402 in the CUG Library.
標簽:
forms-driven
interactive
Stockholm
Berntzon
上傳時間:
2013-12-20
上傳用戶:himbly
program kehuji
uses
Forms,
Unit1 in ..\zxc\Unit1.pas {Form1},
Unit2 in ..\zxc\Unit2.pas {Form2},
Unit3 in ..\zxc\Unit3.pas {Form3},
Unit4 in ..\zxc\Unit4.pas {Form4}
// Unit3 in C:\Program Files\Borland\Delphi7\Projects\Unit3.pas {Form3},
// Unit4 in C:\Program Files\Borland\Delphi7\Projects\Unit4.pas {Form4}
{$R *.res}
begin
Application.Initialize
Application.CreateForm(TForm1, Form1)
Application.CreateForm(TForm2, Form2)
Application.CreateForm(TForm3, Form3)
Application.CreateForm(TForm4, Form4)
// Application.CreateForm(TForm3, Form3)
// Application.CreateForm(TForm4, Form4)
Application.Run
end.
標簽:
zxcUnit
pas
program
kehuji
上傳時間:
2014-01-16
上傳用戶:jing911003