Registriert seit: 22. Sep 2006
Ort: Celle
38 Beiträge
Delphi 2005 Personal
|
Re: Fehler: Das Fenster hat keine Bildlaufleisten
17. Jun 2007, 15:11
Hallo,
danke für die vielen Antworten! Ich habe das Problem jetzt mit LoadIcon gelöst:
Delphi-Quellcode:
program TehCrypt;
uses
Forms,
Windows,
uMainForm in 'uMainForm.pas' {MainForm},
uLanguage in 'uLanguage.pas',
uPropertys in 'uPropertys.pas';
{$R lang.RES lang.rc}
{$R icons.RES icons.rc}
begin
Application.Initialize;
Application.Title := 'TehCrypt v1.0';
Application.CreateForm(TMainForm, MainForm);
MainForm.Icon.Handle := LoadIcon(HInstance,'R02_FormIcon');
Application.Icon.Handle := MainForm.Icon.Handle;
Application.Run;
end.
|
|
Zitat
|