📄 sendtransfer.pas.~16~
字号:
unit sendtransfer;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm3 = class(TForm)
Memo1: TMemo;
Label1: TLabel;
Label2: TLabel;
Edit1: TEdit;
ListBox1: TListBox;
Label3: TLabel;
ComboBox1: TComboBox;
Label4: TLabel;
Button1: TButton;
Button2: TButton;
Button3: TButton;
Button4: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form3: TForm3;
implementation
uses mainProfile;
{$R *.dfm}
procedure TForm3.Button4Click(Sender: TObject);
begin
Close();
end;
procedure TForm3.Button2Click(Sender: TObject);
begin
Edit1.Text:=null;
end;
procedure TForm3.Button1Click(Sender: TObject);
begin
if length(Trim(Edit1.Text))<11 then
begin
end
else
showmessage('号码不能小于11位');
;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -