5 questions
-2
votes
1
answer
147
views
How to detect file open requests from Explorer in Delphi?
My Delphi Alexandria program associates certain file extensions in Registry with the Application's Exename, such that Windows shows the right icon. But I am struggling to get my program to notice a ...
5
votes
4
answers
9k
views
How to read value of ParamStr with different deliminators?
When you read ParamStr(), it's deliminated by spaces between each parameter. However, I've seen many command-line arguments which accept a space between the parameter name and its paired value, while ...
18
votes
4
answers
6k
views
Suggestions for how to define command line parameters
In my Delphi application, I would like to add command line parameters to automatically set some parameters in the login screen.
Currently I have a login screen where the user sets some information (...
1
vote
3
answers
1k
views
Why does ParamStr show the wrong file name?
I have associated the ".file_5" extension with my application and I used the ParamStr(1) function in Delphi to show a messagebox that contains the path & file name of the file when I double click ...
6
votes
3
answers
3k
views
How Can I Handle Parameters With Spaces in Delphi?
My program accepts input file names either as command line parameters or in a drag and drop operation or in Explorer by clicking on filenames with an extension that is associated with my program.
...