bruder_s
11th December 2002, 08:30
Hello,
I'm writing a plugin that uses a 'Save As'-Dialog.
Everytime I save something, Winamp focuses on the directory used in the save-dialog (with focus I mean the directory which is selected, when you click on Add|Dir in the Playlist).
I'm searching for a way to prevent this or a method to manually change this directory.
thanks in advance
I'm using this code:
with TSaveDialog.Create(nil) do begin
try
if Execute then begin
//do sth
end;
finally
free();
end;
end;
I'm writing a plugin that uses a 'Save As'-Dialog.
Everytime I save something, Winamp focuses on the directory used in the save-dialog (with focus I mean the directory which is selected, when you click on Add|Dir in the Playlist).
I'm searching for a way to prevent this or a method to manually change this directory.
thanks in advance
I'm using this code:
with TSaveDialog.Create(nil) do begin
try
if Execute then begin
//do sth
end;
finally
free();
end;
end;