Registriert seit: 31. Aug 2007
11 Beiträge
|
ShellExecute-Problem - Undefinierter Bezeichner: Handle
4. Aug 2008, 12:14
Hallo,
Delphi-Quellcode:
procedure Umsetzung_als_Befehl(Befehl: string);
var Befehle_Ini: TIniFile; execution_type: string; path: string;
begin
Befehle_Ini := TIniFile.Create(ExtractFilePath(ParamStr(0)) + ' Befehle_Ini.ini');
execution_type := Befehle_Ini.ReadString(Befehl , ' execution_type' , ' ');
path := Befehle_Ini.ReadString(Befehl , ' path' , ' ');
if execution_type = ' open' then
ShellExecute( Handle, ' open', PChar(path), nil, nil, SW_SHOW);
if execution_type = ' explore' then
ShellExecute( Handle, ' explore', PChar(path), nil, nil, SW_SHOW);
if execution_type = ' print' then
ShellExecute( Handle, ' print', PChar(path), nil, nil, SW_SHOW);
Befehle_Ini.Free;
end;
Dazu kommt dieser Fehler:
Zitat:
E2003 Undefinierter Bezeichner: ' Handle'
Ja, ich habe die ShellAPI eingebunden. In anderen Programmen funktioniert das auch alles genauso. Nur hier nicht, ich kann machen was ich will... Das Handle ist im Weg.
Hat einer ne Ahnung, worans liegt?
Grüße,
Blacky1812
|
|
Zitat
|