zoukankan      html  css  js  c++  java
  • delphi 08 HTML组件




    ///HTML组件
    ///后面的字符串为这个控件的ID号
    ///直线          Line         (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');
    ///按钮          Button      (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertButton', True, '');
    ///复选框        CheckBox  (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputCheckbox', True, '');
    ///单选框        Radio        (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputRadio', True, '');
    ///编辑框        Edit        (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputText', True, '');
    ///文本框        Memo        (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertTextArea', True, '');
    ///密码框        PswEdit      (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputPassword', True, '');
    ///组框架     GroupBox    (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertIFrame', True, '');
    ///列表框        ListBox      (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectListbox', True, '');
    ///组合框        Combobox    (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectDropdown', True, '');
    {
    InsertFieldset
    InsertInputFileUpload
    InsertInputHidden
    InsertInputImage
    InsertInputSubmit
    InsertMarquee






    }



    procedure WB_InsertHorizontalRule();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');
    end;

    procedure WB_InsertButton();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertButton', True, '');
    end;


    procedure WB_InsertCheckbox();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputCheckbox', True, '');
    end;

    procedure WB_InsertRadio();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputRadio', True, '');
    end;

    procedure WB_InsertInputText();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputText', True, '');
    end;

    procedure WB_InsertTextArea();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertTextArea', True, '');
    end;

    procedure WB_InsertInputPassword();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputPassword', True, '');
    end;

    procedure WB_InsertIFrame();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertIFrame', True, '');
    end;

    procedure WB_InsertSelectListbox();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectListbox', True, '');
    end;

    procedure WB_InsertSelectDropdown();
    begin
       (Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectDropdown', True, '');
    end;

    a




  • 相关阅读:
    网络知识
    DXP 技巧和龙芯3A装机
    312-金胜维 P系列2.5寸 480G SATA3 SSD固态硬盘
    NVIDIA Jetson TK1 开发板
    NVIDIA Jetson™ TX1
    XILINX FPGA 开发板 XC3S250E 核心板 学习板+12模块
    AES-OZ745 OZ745 Zynq-7000 开发板与套件
    北京太速科技——海外代购
    AR/VR增强现实 虚拟现实,嵌入式解决方案探讨
    270-VC709E 增强版 基于FMC接口的Xilinx Vertex-7 FPGA V7 XC7VX690T PCIeX8 接口卡
  • 原文地址:https://www.cnblogs.com/xe2011/p/3876350.html
Copyright © 2011-2022 走看看