loginface.pas
来自「中小企业管理系统------ ERP系统原代码」· PAS 代码 · 共 58 行
PAS
58 行
unit LoginFace;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
jpeg, ExtCtrls, KsSkinForms;
type
TfrmLoginFace = class(TForm)
imgFace: TImage;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmLoginFace: TfrmLoginFace;
implementation
uses SysPublic;
{$R *.DFM}
procedure TfrmLoginFace.FormCreate(Sender: TObject);
var
sFile: string;
begin
inherited;
SystemInitialize;
sFile := GetExePath + FILE_START_PIC;
if FileExists(sFile) then imgFace.Picture.LoadFromFile(sFile);
imgFace.Visible := not GetIsDebug; //调试程序
end;
end.
//此源码由程序太平洋收集整理发布,任何人都可自由转载,但需保留本站信息
//╭⌒╮┅~ ¤ 欢迎光临程序太平洋╭⌒╮
//╭⌒╭⌒╮╭⌒╮~╭⌒╮ ︶ ,︶︶
//,︶︶︶︶,''︶~~ ,''~︶︶ ,''
//╔ ╱◥███◣═╬╬╬╬╬╬╬╬╬╗
//╬ ︱田︱田 田 ︱ ╬
//╬ http://www.5ivb.net ╬
//╬ ╭○╮● ╬
//╬ /■\/■\ ╬
//╬ <| || 有希望,就有成功! ╬
//╬ ╬
//╚╬╬╬╬╬╬╬╬╬╬╗ ╔╬╬╬╬╝
//
//说明:
//专业提供VB、.NET、Delphi、ASP、PB源码下载
//包括:程序源码,控件,商业源码,系统方案,开发工具,书籍教程,技术文档
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?