亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? smsform.pas

?? delphi開發
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
unit smsform;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, Buttons, TFlatColorComboBoxUnit, TFlatComboBoxUnit,
  ComCtrls, ExtCtrls, XP_CheckBox, OleCtrls, SHDocVw, Grids, TFlatPanelUnit,
  TFlatMemoUnit,inifiles,comobj,shlobj,shellapi,activex;

type
  Tsmsfrm = class(TForm)
    SpeedButton1: TSpeedButton;
    gb: TGroupBox;
    Label3: TLabel;
    myphonebook: TFlatComboBox;
    Label4: TLabel;
    memomsg: TMemo;
    btnsend: TSpeedButton;
    Panel1: TPanel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    Label8: TLabel;
    Label9: TLabel;
    Label1: TLabel;
    Label2: TLabel;
    mypwd: TEdit;
    mycode: TFlatComboBox;
    btntimesend: TSpeedButton;
    Shape1: TShape;
    Shape2: TShape;
    Panel2: TPanel;
    PageControl1: TPageControl;
    TabSheet1: TTabSheet;
    TabSheet2: TTabSheet;
    CheckBox1: TXP_CheckBox;
    TabSheet3: TTabSheet;
    Web: TWebBrowser;
    Edit1: TEdit;
    Panel3: TPanel;
    tv: TTreeView;
    sp: TSplitter;
    sg: TStringGrid;
    memosms: TFlatPanel;
    Label10: TLabel;
    Panel4: TPanel;
    SpeedButton2: TSpeedButton;
    SpeedButton3: TSpeedButton;
    SpeedButton4: TSpeedButton;
    GroupBox1: TGroupBox;
    edtname: TLabeledEdit;
    Label11: TLabel;
    rb1: TRadioButton;
    rb2: TRadioButton;
    edtphone: TLabeledEdit;
    Label12: TLabel;
    Memo1: TMemo;
    sg2: TStringGrid;
    frendcode: TFlatComboBox;
    Shape4: TShape;
    Shape3: TShape;
    Shape5: TShape;
    Shape6: TShape;
    Shape7: TShape;
    Shape8: TShape;
    Shape9: TShape;
    Shape10: TShape;
    Shape11: TShape;
    Shape12: TShape;
    Shape13: TShape;
    Shape14: TShape;
    Label14: TLabel;
    cbcenter: TFlatComboBox;
    Shape15: TShape;
    Shape16: TShape;
    pp1: TFlatPanel;
    pp: TPanel;
    Shape17: TShape;
    SpeedButton5: TSpeedButton;
    Shape18: TShape;
    procedure SpeedButton1Click(Sender: TObject);
    procedure FormActivate(Sender: TObject);
    procedure CheckBox1Click(Sender: TObject);
    procedure PageControl1Change(Sender: TObject);
    procedure WebDocumentComplete(Sender: TObject; const pDisp: IDispatch;
      var URL: OleVariant);
    procedure FormCreate(Sender: TObject);
    procedure btnsendClick(Sender: TObject);
    procedure WebBeforeNavigate2(Sender: TObject; const pDisp: IDispatch;
      var URL, Flags, TargetFrameName, PostData, Headers: OleVariant;
      var Cancel: WordBool);
    procedure mycodeClick(Sender: TObject);
    procedure mypwdClick(Sender: TObject);
    procedure frendcodeClick(Sender: TObject);
    procedure memomsgChange(Sender: TObject);
    procedure spMoved(Sender: TObject);
    procedure tvClick(Sender: TObject);
    procedure sgMouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
    procedure tvMouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
    procedure sgDblClick(Sender: TObject);
    procedure SpeedButton2Click(Sender: TObject);
    procedure sg2MouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
    procedure SpeedButton4Click(Sender: TObject);
    procedure sg2Click(Sender: TObject);
    procedure myphonebookChange(Sender: TObject);
    procedure edtnameKeyPress(Sender: TObject; var Key: Char);
    procedure edtphoneKeyPress(Sender: TObject; var Key: Char);
    procedure SpeedButton3Click(Sender: TObject);
    procedure sg2DblClick(Sender: TObject);
    procedure Shape10MouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
    procedure btntimesendClick(Sender: TObject);
    procedure memomsgKeyPress(Sender: TObject; var Key: Char);
    procedure cbcenterChange(Sender: TObject);
    procedure SpeedButton5Click(Sender: TObject);
    procedure Shape17MouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  smsfrm: Tsmsfrm;
  c,r:integer;
  cr,cr1:integer;
  url:string;
  procedure sendsms(sender:tobject;tmpurl:string);
  procedure sendsohu(sender:tobject;tmpurl:string);
  procedure sendsina(sender:tobject;tmpurl:string);
  procedure sendchina(sender:tobject;tmpurl:string);
  procedure createico(s:string;s1:string);
implementation
  uses smsdll, loginform, modiform, regform, sendform;
{$R *.dfm}
procedure createico(s:string;s1:string);//s:程序名稱 s1:快捷方式名稱
var
   tmo:iunknown;
   tms:ishelllink;
   tmpf:ipersistfile;
   pidl:pitemidlist;
   sd:array[0..max_path] of char;
   sf,ss:string;
   linkf:widestring;//must use shlobj,comobj,activex in uses unit
begin
  sf:=s;
  tmo:=createcomobject(clsid_shelllink);
  tms:=tmo as ishelllink;
  tmpf:=tmo as ipersistfile;
  s:=extractfilepath(s);
  tms.SetPath(pchar(sf));
  tms.setworkingdirectory(pchar(s));
  shgetspecialfolderlocation(0,csidl_desktopdirectory,pidl);
  shgetpathfromidlist(pidl,sd);
  ss:=sd;
  ss:=ss+'\'+(s1)+'.lnk';
  linkf:=ss;
  tmpf.save(pwchar(linkf),false);
end;

procedure sendsina(sender:tobject;tmpurl:string);
var
   i,j,ok:integer;
   doc:olevariant;
begin
   ok:=0;
   doc:=(sender as twebbrowser).document;
   j:=doc.all.length;
   with smsfrm do
   begin
   for i:=0 to j-1 do
   begin
     if (doc.all.item(i).tagname='INPUT')or
        (doc.all.item(i).tagname='TEXTAREA') then
     begin
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='mob1') then //對方手機號
       begin
           inc(ok);  //=1
           doc.all.item(i).value:=frendcode.Text;
       end;
       if(doc.all.item(i).tagname='TEXTAREA')and
         (doc.all.item(i).name='msg') then//內容
       begin
           inc(ok);  //=2
           doc.all.item(i).value:=memomsg.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='user') then //我的手機號
       begin
           inc(ok);//=3
           doc.all.item(i).value:=mycode.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='password') and
          (doc.all.item(i).name='passwd') then //密碼
       begin
           inc(ok); //=4
           //if ok>4 then
             doc.all.item(i).value:=mypwd.Text;
       end;
       if (doc.all.item(i).tagname='INPUT') and
          (doc.all.item(i).type='checkbox') and
          (doc.all.item(i).name='time') then
       begin
           inc(ok);//=5
           doc.all.item(i).checked:=false;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='submit')and
          (doc.all.item(i).value=' 發送 ') then //發送按鈕
       begin
           inc(ok);//=6
           if ok=6 then
             doc.all.item(i).click;
       end;
     end;
   end;
  end;
end;

procedure sendchina(sender:tobject;tmpurl:string);
var
   i,j,ok:integer;
   doc:olevariant;
begin
   ok:=0;
   doc:=(sender as twebbrowser).document;
   j:=doc.all.length;
   with smsfrm do
   begin
   for i:=0 to j-1 do
   begin
     if (doc.all.item(i).tagname='INPUT')or
        (doc.all.item(i).tagname='TEXTAREA') then
     begin
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).name='to_mobile') then //對方手機號
       begin
           inc(ok);  //=1
           doc.all.item(i).value:=frendcode.Text;
       end;
       if(doc.all.item(i).tagname='TEXTAREA')and
         (doc.all.item(i).name='message') then//內容
       begin
           inc(ok);  //=2
           doc.all.item(i).value:=memomsg.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).name='mymobile') then //我的手機號
       begin
           inc(ok);//=3
           doc.all.item(i).value:=mycode.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='password') and
          (doc.all.item(i).name='mypasswd') then //密碼
       begin
           inc(ok); //=4
           //if ok>4 then
             doc.all.item(i).value:=mypwd.Text;
       end;
//       if (doc.all.item(i).tagname='INPUT') and
//          (doc.all.item(i).type='checkbox') and
//          (doc.all.item(i).name='isflash') then
//       begin
//           inc(ok);//=5
//           doc.all.item(i).checked:=false;
//       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='image')and
          (pos('left_009.gif',doc.all.item(i).src)>0) then //發送按鈕
       begin
           inc(ok);//=5
           if ok=5 then
             doc.all.item(i).click;
       end;
     end;
   end;
  end;
end;

procedure sendsohu(sender:tobject;tmpurl:string);
var
   i,j,ok:integer;
   doc:olevariant;
begin
   ok:=0;
   doc:=(sender as twebbrowser).document;
   j:=doc.all.length;
   with smsfrm do
   begin
   for i:=0 to j-1 do
   begin
     if (doc.all.item(i).tagname='INPUT')or
        (doc.all.item(i).tagname='TEXTAREA') then
     begin
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='tonumber') then //對方手機號
       begin
           inc(ok);  //=1
           doc.all.item(i).value:=frendcode.Text;
       end;
       if(doc.all.item(i).tagname='TEXTAREA')and
         (doc.all.item(i).name='message') then//內容
       begin
           inc(ok);  //=2
           doc.all.item(i).value:=memomsg.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='usernumber') then //我的手機號
       begin
           inc(ok);//=3
           doc.all.item(i).value:=mycode.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='password') and
          (doc.all.item(i).name='password') then //密碼
       begin
           inc(ok); //=4
           if ok>4 then
             doc.all.item(i).value:=mypwd.Text;
       end;
       if (doc.all.item(i).tagname='INPUT') and
          (doc.all.item(i).type='checkbox') and
          (doc.all.item(i).name='isflash') then
       begin
           inc(ok);//=5
           doc.all.item(i).checked:=false;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='submit')and
          (doc.all.item(i).value='發送') then //發送按鈕
       begin
           inc(ok);//=6
           if ok=7 then
             doc.all.item(i).click;
       end;
     end;
   end;
  end;
end;


procedure sendsms(sender:tobject;tmpurl:string);
var
   i,j,ok:integer;
   doc:olevariant;
begin
   ok:=0;
   doc:=(sender as twebbrowser).document;
   j:=doc.all.length;
  if pos('WWW.SMSCHINA.COM',uppercase(tmpurl))>0 then
  begin
   with smsfrm do
   begin
   for i:=0 to j-1 do
   begin
     if (doc.all.item(i).tagname='INPUT')or
        (doc.all.item(i).tagname='TEXTAREA') then
     begin
          if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='phone') then //對方手機號
       begin
           inc(ok);  //=1
           doc.all.item(i).value:=frendcode.Text;
       end;
       if(doc.all.item(i).tagname='TEXTAREA')and
         (doc.all.item(i).name='content') then//內容
       begin
           inc(ok);  //=2
           doc.all.item(i).value:=memomsg.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='text')and
          (doc.all.item(i).name='mycode') then //我的手機號
       begin
           inc(ok);//=3
           doc.all.item(i).value:=mycode.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and
          (doc.all.item(i).type='password') and
          (doc.all.item(i).name='mypw') then //密碼
       begin
           inc(ok); //=4
           doc.all.item(i).value:=mypwd.Text;
       end;
       if (doc.all.item(i).tagname='INPUT')and

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91富婆露脸刺激对白| 91精品国产乱| 91麻豆国产香蕉久久精品| 91热门视频在线观看| 91久久人澡人人添人人爽欧美| 一级精品视频在线观看宜春院 | 中文字幕一区二区三区四区不卡 | 色悠悠亚洲一区二区| 95精品视频在线| 欧美伊人久久久久久久久影院 | 蜜臀a∨国产成人精品| 欧美精品一二三| 制服丝袜成人动漫| 日韩亚洲欧美中文三级| 91精品欧美久久久久久动漫| 精品久久久久一区| 中文字幕一区二区三区色视频| 国产精品久久三| 日韩不卡一区二区| 国产99久久久国产精品潘金网站| 不卡电影一区二区三区| 欧美日韩五月天| 国产午夜亚洲精品理论片色戒| 国产精品动漫网站| 中文字幕av一区二区三区高 | 亚洲精品一二三| 日韩激情一区二区| 波多野结衣欧美| 欧美日韩一卡二卡| 国产精品女同互慰在线看| 一区二区三区不卡在线观看| 国产精品亚洲а∨天堂免在线| 99久久综合狠狠综合久久| 欧美日韩国产综合一区二区| 久久久久国产一区二区三区四区| 欧美国产一区视频在线观看| 日韩av在线播放中文字幕| av不卡在线播放| 精品奇米国产一区二区三区| 亚洲精品视频自拍| 黑人精品欧美一区二区蜜桃| 欧美综合一区二区| 亚洲国产精品t66y| 亚洲高清一区二区三区| 色妞www精品视频| 欧美精品一区二区在线观看| 日韩av在线免费观看不卡| 在线观看日韩一区| 亚洲国产经典视频| 国产精品综合一区二区| 日韩欧美一二三区| 亚洲一区二区精品视频| www.日韩精品| 国产欧美日本一区视频| 美女网站在线免费欧美精品| 欧美午夜电影网| 亚洲日本青草视频在线怡红院| 久久99国产精品尤物| 欧美剧情电影在线观看完整版免费励志电影| 国产亚洲欧美中文| 久久99国产精品久久| 717成人午夜免费福利电影| 午夜影院久久久| 欧美色国产精品| 亚洲国产wwwccc36天堂| 日本高清免费不卡视频| 亚洲另类中文字| 色屁屁一区二区| 2020国产精品| 琪琪久久久久日韩精品| 欧美在线|欧美| 精品国产乱码久久久久久图片 | 色先锋aa成人| 依依成人精品视频| 欧洲精品在线观看| 亚洲国产一区二区三区| 欧美色图在线观看| 午夜伊人狠狠久久| 欧美大片一区二区三区| 九一久久久久久| 国产欧美日韩综合精品一区二区| 午夜电影一区二区| 日韩三级免费观看| 日韩一区欧美一区| 91免费视频网| 玉米视频成人免费看| 欧美丰满嫩嫩电影| 日韩中文字幕麻豆| 99久久夜色精品国产网站| 欧美一级在线视频| 亚洲444eee在线观看| 精品国产一区二区三区av性色| 久久精品国产第一区二区三区| 99re这里都是精品| 尤物在线观看一区| 成人性色生活片| 亚洲成av人片在www色猫咪| 精品国精品自拍自在线| 成+人+亚洲+综合天堂| 天使萌一区二区三区免费观看| 99精品一区二区三区| 国产丝袜欧美中文另类| 成人性色生活片免费看爆迷你毛片| 欧美电视剧免费全集观看| 国产日韩影视精品| 国产精品99久| 精品动漫一区二区三区在线观看| 亚洲bt欧美bt精品777| 26uuu亚洲综合色欧美| 日本精品裸体写真集在线观看| 亚洲国产精品久久一线不卡| 波多野结衣在线aⅴ中文字幕不卡| 国产精品免费网站在线观看| 蜜桃久久久久久久| 亚洲国产精品激情在线观看| 丰满亚洲少妇av| 亚洲国产综合色| 最近日韩中文字幕| 精品成人私密视频| 欧美精品vⅰdeose4hd| 97超碰欧美中文字幕| 国产一区二区看久久| 亚洲国产视频一区二区| 国产亚洲短视频| 欧美一卡2卡三卡4卡5免费| 99精品久久只有精品| 日本欧美加勒比视频| 一区二区三区日韩精品视频| 国产欧美日韩在线看| 51午夜精品国产| 欧美亚洲日本国产| 成人av网站免费| 国产精品一区二区在线观看不卡 | 日本不卡视频在线| 亚洲综合激情另类小说区| 国产精品久久久久影视| 久久久高清一区二区三区| 欧美一区二区三区啪啪| 欧美视频一区二区三区| 在线亚洲人成电影网站色www| 国产精品资源在线看| 久久国内精品自在自线400部| 亚洲一区视频在线观看视频| 亚洲人成网站影音先锋播放| 国产精品色一区二区三区| 久久精品无码一区二区三区| 精品国精品国产尤物美女| 日韩精品专区在线影院观看| 欧美肥妇毛茸茸| 日韩欧美一级精品久久| 日韩一级片网站| 337p日本欧洲亚洲大胆色噜噜| 欧美人牲a欧美精品| 欧美日韩在线免费视频| 欧美丝袜丝nylons| 欧美日韩国产精选| 成人夜色视频网站在线观看| 久久亚洲影视婷婷| 久久99热这里只有精品| 欧美视频一二三区| eeuss鲁片一区二区三区| 国产.欧美.日韩| 欧美日韩大陆在线| 国产精品乱码妇女bbbb| 国产精品久久久久永久免费观看 | 91精品视频网| 国产精品自拍一区| 亚洲男人的天堂在线aⅴ视频| 国产不卡在线视频| 亚洲v日本v欧美v久久精品| 欧美一区二区播放| 精品一区二区在线观看| 91精品国产欧美日韩| 亚洲第一二三四区| 欧美精品乱码久久久久久按摩 | 欧美aa在线视频| www欧美成人18+| 在线不卡中文字幕| 国产成人av电影在线播放| 美女精品自拍一二三四| 国产人久久人人人人爽| 国产精品每日更新| 亚洲最大的成人av| 久久国产精品一区二区| 成人aaaa免费全部观看| 欧美日韩综合在线| 国产目拍亚洲精品99久久精品| 欧美性高清videossexo| 欧美三级视频在线观看 | 91麻豆精品一区二区三区| 91影院在线观看| 99精品久久99久久久久| 国产999精品久久久久久绿帽| 中文字幕在线不卡一区二区三区| 成人国产一区二区三区精品| 国产成人午夜片在线观看高清观看| 国产精品美女一区二区三区| 2024国产精品视频| 久久精品亚洲一区二区三区浴池| 色偷偷88欧美精品久久久 |