delphi - Is it possible to make a filename non-editable using the Edit Box of the SaveDialog of Delphi7? -
according our requirements, want enable user select place save file , restrict editing of name.
is possible inbuilt savedialog component of delphi (7)?
yes, possible, isn't really want do. want not select file name, select folder, , different problem.
using filectrl
,
var dir: string; begin if selectdirectory('select directory','', dir, [sdnewui, sdnewfolder]) showmessage(dir);
on vista+ can use directory selection mode of file dialog.
Comments
Post a Comment