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

📄 unit1.~pas

📁 学习您上载的源码为何会被站长不采用或帐号被删除?
💻 ~PAS
字号:
unit Unit1;

interface

uses
  Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, Controls,
  IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl,
  IWCompButton, DB, DBTables, IWCompListbox, IWDBStdCtrls;

type
  TIWForm1 = class(TIWAppForm)
    IWButton1: TIWButton;
    DataSource1: TDataSource;
    Table1: TTable;
    IWDBLookupComboBox1: TIWDBLookupComboBox;
    procedure IWButton1Click(Sender: TObject);
  public
  end;

implementation

{$R *.dfm}


procedure TIWForm1.IWButton1Click(Sender: TObject);
begin
if  not Table1.Active then
begin
Table1.Active:=true;
end;
//WebApplication.ShowMessage(IWDBLookupComboBox1.DataField);
WebApplication.ShowMessage(IWDBLookupComboBox1.Text);
end;

initialization
  TIWForm1.SetAsMainForm;

end.

⌨️ 快捷键说明

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