![]() |
Delphi-Version: 2010
Save dialog - update file extension in dialog on type change
How can I update file name in dialog on type change?
Delphi-Quellcode:
But looks to not occur when type combobox is changed.
procedure OnTypeChange(...);
// Set DefaultExt here... // Update file name: SaveDialog.FileName := ChangeFileExt(SaveDialog.FileName, SaveDialog.DefaultExt); How can do it? |
AW: Save dialog - update file extension in dialog on type change
Do you mean the content of the edit on the dialog form? IIRC this will not get updated automatically when the filename changes. To see if your changes are taking place you will have to display a messagebox or something like that (for testing only, of course).
|
AW: Save dialog - update file extension in dialog on type change
The following code in the OnTypeChange event handler
will do it: WITH SaveDialog DO BEGIN SendMessage(GetParent(Handle),cdm_SetControlText,E dt1, Integer(PChar(ExtractFileName(file_id)))); SetWindowText(GetParent(Handle),PChar(Title)) END |
Re: AW: Save dialog - update file extension in dialog on type change
Zitat:
|
AW: Save dialog - update file extension in dialog on type change
I just found
![]() |
Re: Save dialog - update file extension in dialog on type change
Thanks :) But it don't working on Vista-based - on XP is ok, but on newer not. Why I'm not surprised? Ah. Do you know some trick to do it working on Vista/7 too?
|
AW: Save dialog - update file extension in dialog on type change
Taken from the MSDN:
Zitat:
![]() A quick google search brought up this piece of code, maybe it can be useful: ![]() |
Re: Save dialog - update file extension in dialog on type change
So, there is TSaveDialog. How to update edit inside on Vista-based Windowses?
|
AW: Save dialog - update file extension in dialog on type change
I don' t know because I didn' t test the code. But things such as "SetFileNameLabel" sound interesting to me.
|
AW: Save dialog - update file extension in dialog on type change
Edt1 is defined in Dlgs, it means the corresponding edit box.
Title is a property of (Save) dialogs and file_id is the file name you care about. It works fine under Vista too, under Windows7 I don't know. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:14 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz