📄 iwunit2.pas
字号:
unit IWUnit2;
{PUBDIST}
interface
uses
IWAppForm, IWApplication, IWTypes, IWHTMLControls, IWCompLabel, jpeg,
Classes, Controls, IWControl, IWExtCtrls, IWCompListbox;
type
TFormWelcome = class(TIWAppForm)
IWImage1: TIWImage;
IWLabel1: TIWLabel;
IWURL1: TIWURL;
IWListbox1: TIWListbox;
procedure IWAppFormCreate(Sender: TObject);
public
end;
implementation
{$R *.dfm}
uses
ServerController;
procedure TFormWelcome.IWAppFormCreate(Sender: TObject);
begin
if UserSession.FMan=nil then exit;
IWListbox1.Items.Add(UserSession.FMan.Name);
IWListbox1.Items.Add(UserSession.FMan.Dep);
IWListbox1.Items.Add(UserSession.FMan.Job);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -