?? code5.~pas
字號:
unit code5;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons;
type
TForm5 = class(TForm)
Memo1: TMemo;
GroupBox1: TGroupBox;
Edit1: TEdit;
BitBtn1: TBitBtn;
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form5: TForm5;
implementation
uses code;
{$R *.DFM}
procedure TForm5.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
form1.ClientSocket1.Socket.SendText('out!!');
end;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -