- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
da_csszs.pas
资源名称:挡案管理系统.rar [点击查看]
上传用户:szruida
上传日期:2007-06-01
资源大小:6518k
文件大小:3k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit da_csszs;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls, Buttons, TFlatButtonUnit,inifiles;
- type
- Tda_cssz = class(TForm)
- gbtitle: TGroupBox;
- Topic: TEdit;
- gbbg: TGroupBox;
- open: TOpenDialog;
- topicSet: TFlatButton;
- BgSet: TFlatButton;
- BgRestore: TFlatButton;
- FlatButton4: TFlatButton;
- procedure FlatButton4Click(Sender: TObject);
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- procedure FormShow(Sender: TObject);
- procedure topicSetClick(Sender: TObject);
- procedure BgSetClick(Sender: TObject);
- procedure BgRestoreClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- da_cssz: Tda_cssz;
- implementation
- uses mainfrms,da_comman;
- var
- inifile: TiniFile;
- {$R *.dfm}
- procedure Tda_cssz.FlatButton4Click(Sender: TObject);
- begin
- close;
- end;
- procedure Tda_cssz.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- da_cssz:=nil;
- end;
- procedure Tda_cssz.FormShow(Sender: TObject);
- begin
- Topic.Text:=sTopic;
- end;
- procedure Tda_cssz.topicSetClick(Sender: TObject);
- begin
- if Topic.Text <> '' then
- begin
- iniFile := TIniFile.Create(sPath + 'perset.ini');
- iniFile.WriteString('sTopic', 'topic', Trim(Topic.Text));
- MessageBox(self.Handle, '主题设置成功!', '提示', mb_IconInformation + mb_Ok);
- mainfrm.Caption := Trim(Topic.Text);
- iniFile.Free;
- end
- else
- begin
- MessageBox(self.Handle, '请输入系统主题!', '提示', mb_IconInformation + mb_Ok);
- Topic.SetFocus;
- end;
- end;
- procedure Tda_cssz.BgSetClick(Sender: TObject);
- var fName,fNameo:string;
- begin
- if open.Execute then
- begin
- iniFile := TIniFile.Create(sPath + 'perset.ini');
- fNameo := iniFile.ReadString('sysbg', 'bground', 'main.jpg');
- if FileExists(sPath + fNameo) and (fNameo <> 'main.jpg') then
- DeleteFile(sPath + fNameo);
- fName := ExtractFileName(open.FileName);
- CopyFile(Pchar(open.FileName),pchar('' + 'images' + fName), false);
- iniFile.WriteString('sysbg', 'bground', 'images' + fName);
- mainfrm.image1.Picture.LoadFromFile('' + 'images' + fName);
- MessageBox(self.Handle, '背景设置成功!', '提示', mb_IconInformation + mb_Ok);
- iniFile.Free;
- end;
- end;
- procedure Tda_cssz.BgRestoreClick(Sender: TObject);
- var fName:string;
- begin
- iniFile := TIniFile.Create(sPath + 'perset.ini');
- fName := iniFile.ReadString('sysbg', 'bground', '');
- if FileExists(sPath + fName) and (fName <> 'main.jpg') then
- DeleteFile(sPath + fName);
- iniFile.WriteString('sysbg', 'bground', 'main.jpg');
- mainfrm.image1.Picture.LoadFromFile(sPath + 'main.jpg');
- MessageBox(self.Handle, '背景复原成功!', '提示', mb_IconInformation + mb_Ok);
- iniFile.Free;
- end;
- end.