Autor Beitrag
rn22
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 70



BeitragVerfasst: Mi 12.07.06 14:48 
Hallo

ich möchte, dass mein Opendialog, wenn er erscheint, schon einen "Vorschlag" im Eingabefeld für den Dateinamen hat - wie man das etwa für eine "Speichern unter"-Funktion braucht.
Wer kann helfen?

Grüße
alias5000
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 2145

WinXP Prof SP2, Ubuntu 9.04
C/C++(Code::Blocks, VS.NET),A51(Keil),Object Pascal(D2005PE, Turbo Delphi Explorer) C# (VS 2008 Express)
BeitragVerfasst: Mi 12.07.06 14:50 
Mit InitialDir kannste den Pfad angeben, vllcht akzeptiert der auch einen kompletten Dateinamen. Geht das nicht, kannste mal versuchen mit Filename rumzuspielen

_________________
Programmers never die, they just GOSUB without RETURN
ZeitGeist87
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 1593
Erhaltene Danke: 20

Win95-Win10
Delphi 10 Seattle, Rad Studio 2007, Delphi 7 Prof., C++, WSH, Turbo Pascal, PHP, Delphi X2
BeitragVerfasst: Mi 12.07.06 14:53 
ganz einfach

ausblenden Delphi-Quelltext
1:
 opendialog1.filename:= 'MeinDateiname.evtl_mit_Erweiterung';					


dieser steht dann voreingestellt bei Dateiname drin.

Kann an jeder Stelle im Quelltext beliebig definiert werden, aber noch vor dem

ausblenden Delphi-Quelltext
1:
 opendialog1.execute;					


lg
stefan

_________________
Wer Provokationen, Ironie, Sarkasmus oder Zynismus herauslesen kann soll sie ignorieren um den Inhalt meiner Beiträge ungetrübt erfassen zu können.
crowley
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 406

Win XP, Win Vista, Mandriva, Ubuntu
Delphi 4-8, Delphi 2006, Delphi 2007
BeitragVerfasst: Mi 12.07.06 15:12 
Filename kannst du im OpenDialog auch schon zur Entwurfszeit im Objektinspektor einstellen

C.