f_depart_id.pas
上传用户:lcqxtx
上传日期:2013-02-15
资源大小:530k
文件大小:1k
源码类别:

企业管理

开发平台:

Delphi

  1. unit f_depart_id;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls, ExtCtrls, Buttons, DB, ADODB;
  6. type
  7.   Tw_depart_id = class(TForm)
  8.     data_depart_id: TDataSource;
  9.     ado_depart_id: TADOQuery;
  10.     ado_depart_iddepart_id: TStringField;
  11.     ado_depart_iddepart_name: TStringField;
  12.     Panel1: TPanel;
  13.     Label1: TLabel;
  14.     ComboBox1: TComboBox;
  15.     BitBtn1: TBitBtn;
  16.     BitBtn2: TBitBtn;
  17.     procedure FormCreate(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23. var
  24.   w_depart_id: Tw_depart_id;
  25. implementation
  26. {$R *.dfm}
  27. procedure Tw_depart_id.FormCreate(Sender: TObject);
  28. begin
  29.    ado_depart_id.Close;
  30.    ado_depart_id.SQL.Clear;
  31.    ado_depart_id.SQL.Add('select* from depart');
  32.    ado_depart_id.Open;
  33.    ado_depart_id.First;
  34. while not ado_depart_id.eof do
  35. begin
  36. combobox1.items.add(trim(ado_depart_id.fieldbyname('depart_id').asString)+'  ---  '+trim(ado_depart_id.fieldbyname('depart_name').asString));
  37. ado_depart_id.next;
  38. end;
  39. end;
  40. end.