ВУЗ:
Составители:
177
Продолжение прил.
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Menus;
type Tdlg = class(TForm)
lab: TLabel;
PopupMenul: TPopupMenu;
Radiol: TRadioButton;
Radio2: TRadioButton;
Radio3: TRadioButton;
ok: TButton;
Radio4: TRadioButton;
procedure okClick(Sender: TObject);
private
{ Private declarations } public
{ Public declarations } end;
var
dig:
Tdlg;
implementation
{$R *.DFM}
procedure Tdlg.okClick(Sender: TObject);
begin
dig.
Close;
end;
end.
Продолжение прил. unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Menus; type Tdlg = class(TForm) lab: TLabel; PopupMenul: TPopupMenu; Radiol: TRadioButton; Radio2: TRadioButton; Radio3: TRadioButton; ok: TButton; Radio4: TRadioButton; procedure okClick(Sender: TObject); private { Private declarations } public { Public declarations } end; var dig: Tdlg; implementation {$R *.DFM} procedure Tdlg.okClick(Sender: TObject); begin dig. Close; end; end. 177
Страницы
- « первая
- ‹ предыдущая
- …
- 175
- 176
- 177
- 178
- 179
- …
- следующая ›
- последняя »