Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to make my program open a file specified as a command line parameter? Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
19-Nov-02
Category
Algorithm
Language
Delphi 2.x
Views
144
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: William Gerbert

How do I make my program open a file specified as a command line parameter?

Answer:

To do this you need to use two functions - ParamCount and ParamStr. ParamCount 
returns the number of command line parameters specified when the program was run.  
ParamStr returns the parameter string of a specified parameter.

Basically all you need to do is check to see whether any parameters have been 
passed, and if so evaluate them. The format of the parameter(s) is entirely up to 
you, and you can produce code to deal with anything from a single parameter to a 
whole range.

This simple example only allows for a single parameter - a file name - and if a 
file name is passed the program loads that file when the form is shown. It requires 
a single form with a Memo dropped onto it. Simply put the following code into the 
form's OnShow event:

1   procedure TForm1.FormShow(Sender: TObject);
2   begin
3     Memo1.Clear;
4     if ParamCount > 0 then
5       begin
6         case ParamCount of
7           1: Memo1.Lines.LoadFromFile(Paramstr(1));
8           // allow for other possible parameter counts here
9         else
10           begin
11             ShowMessage('Invalid Parameters');
12             Application.Terminate;
13           end;
14      end;
15  end;


To prove this code, after compiling the program of course, select Start | Run and 
enter the following. Make sure that you replace the path of the exe file with the 
correct path for your machine:

"F:\Borland\Delphi 3\Project1.exe" "c:\windows\win.ini"

This will open the Win.ini file in the memo in the application you created.  Obviously this example could be extended considerably (there is no check to make sure that the file exists, for example) and the parameters could be parsed to determine what should be done with the information. It does not have to be a file opening command, it could just as easily be configuration information or indeed anything else that you may wish to specify when the program is run.

			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC