| Results : (Votes » 3378) | | every day | | | 2 - 7 days | | | 8 - 14 days | | | 14 - 30 days | | | 30 and more | |
|
|
|
| How can I create Delphi program without VCL components | 12.7.2001 |
program Saveit;
uses Forms, Dialogs, SysUtils;
program Saveit;
uses Forms, Dialogs, SysUtils;
{$R *.RES}
var
SaveDlg : TSaveDialog;
begin
SaveDlg := TSaveDialog.Create(Application);
with SaveDlg do
begin
InitialDir := ExtractFilePath(ParamStr(0));
FileName := ParamStr(1);
Title := '[' + ParamStr(1) + ']-Save File As';
Filter := 'Valid Files|*.DBF;*.CSV;*.WKS;*.XLS';
Options := [ofFileMustExist, ofOverwritePrompt, ofPathMustExist];
Execute;
Free;
end;
end.
| | Hits : 3673 | | Votes: 8 (1.12) |
|
|
|
|
« Sponsored Links »
|
TCAD from www.codeidea.com TCAD is a component that will help you write vector graphics applications(CAD, GIS, SCADA, VISIO). Shapes can be interacted with by mouse or code. It is easy to use, effective and powerful. It will save you valuable time. » more... |
|
|
|
www.sunisoft.com TinyDB help you to create/access database in ONE file without BDE SUIPack help you to create applications with MacOS/WinXP/cool themes » more... |
|
Abakus VCL Abakus VCL is a professional set of Delphi and C++Builder components for virtual instrumentation.» more... |
|
|
|
|
|