Scalabium Software

SMExport advertising

Knowledge for your independence'.
Home Delphi and C++Builder tips


#76: How can I change a button caption in OpenDialog/SaveDialog?

Today I found a nice tip about changing the captions in standard dialogs (TOpenDialog or TSaveDialog).

By default the TOpenDialog have the two buttons: Open and Cancel. You can change this default value:

procedure TForm1.OpenDialog1Show(Sender: TObject);
begin
  SetDlgItemText(GetParent(OpenDialog1.Handle), IDOK, PChar('New &Open'));
  SetDlgItemText(GetParent(OpenDialog1.Handle), IDCANCEL, PChar('New &Cancel'));
end;


Published: May 5, 2000

See also
 
MAPIMail
Paradox ActiveX
dBase Viewer
Paradox to MS Access converter
ExcelFile Viewer
Excel Web-stream
DBExport tools
Paradox to Text converter
ABA Document Convert
Excel Reader (dll)
 
 
Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2013, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMExport advertising