⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smsreply.pas

📁 请使用Mobile FBUS——用来创建与NOKIA手机连接的软件的理想解决方案!功能包括:发送SMS
💻 PAS
字号:
unit SMSReply;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls,misc;

type
  TfrmSMSView = class(TForm)
    lblDate: TLabel;
    lblFrom: TLabel;
    lblSMSDate: TLabel;
    moMessage: TMemo;
    lblSMSFrom: TLabel;
    btnReply: TButton;
    btnClose: TButton;
    procedure btnCloseClick(Sender: TObject);
    procedure btnReplyClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmSMSView: TfrmSMSView;

implementation

uses SendSMS;

{$R *.DFM}

procedure TfrmSMSView.btnCloseClick(Sender: TObject);
begin
  close;
end;

procedure TfrmSMSView.btnReplyClick(Sender: TObject);
begin
  Application.createform(TfrmSendSMS,frmSendSMS);
  frmSendSMS.txtDestination.text:=FilterNumber(lblSMSFrom.caption);
  frmSendSMS.mmoText.lines.clear;
  self.close;
  frmSendSMS.showmodal;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -