program Tyssql; uses Forms, Unit1 in 'UNIT1.PAS' {Form1}, Unit2 in 'UNIT2.PAS' {Form2}; {$R *.RES} begin Application.CreateForm(TForm2, Form2); Application.CreateForm(TForm1, Form1); Application.Run; end. unit Unit1; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.DFM} end. unit Unit2; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, StdCtrls, Forms, DBCtrls, DB, DBGrids, DBTables, Grids, Mask, ExtCtrls; type TForm2 = class(TForm) ScrollBox: TScrollBox; Label1: TLabel; EditPARTNUM: TDBEdit; Label2: TLabel; EditDESCRIPTION: TDBEdit; Label3: TLabel; EditPRICE: TDBEdit; DBGrid1: TDBGrid; DBNavigator: TDBNavigator; Panel1: TPanel; DataSource1: TDataSource; Panel2: TPanel; Panel3: TPanel; Query1: TQuery; Query2: TQuery; DataSource2: TDataSource; procedure FormCreate(Sender: TObject); private { private declarations } public { public declarations } end; var Form2: TForm2; implementation {$R *.DFM} procedure TForm2.FormCreate(Sender: TObject); begin Query1.Open; Query2.Open; end; end.
© Copyright, Macmillan Computer Publishing. All rights reserved.