Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Windows
»
Open Application with start values on windows
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Cannot clean and Build - ...
by
dbannon
[
Today
at 01:42:34 am]
Extract XPath from HTML i...
by
Miguel.BR
[
Today
at 01:38:07 am]
cannot receive messages; ...
by
rvk
[
Today
at 12:54:01 am]
Decompressing a gz file
by
y.ivanov
[
Today
at 12:40:49 am]
Lazarus Dark theme...
by
LeoBruno
[
Today
at 12:17:22 am]
Dark theme for IDE (Lazar...
by
LeoBruno
[
Today
at 12:16:27 am]
Compiler: {$INCLUDE %DAT...
by
AlanTheBeast
[
Today
at 12:11:53 am]
AllocateHwnd alternative ...
by
jamie
[July 02, 2022, 10:14:36 pm]
Rapidapi (https://rapidap...
by
marcov
[July 02, 2022, 09:00:27 pm]
and operator
by
y.ivanov
[July 02, 2022, 08:45:43 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Open Application with start values on windows (Read 522 times)
eldonfsr
Sr. Member
Posts: 295
Open Application with start values on windows
«
on:
May 22, 2022, 02:20:56 am »
I need run application but must be receive a parameters to start some think like that
Admin "config.txt"
Admin "network.txt"
the file contain some configuration like path and user information
Logged
speter
Sr. Member
Posts: 277
Re: Open Application with start values on windows
«
Reply #1 on:
May 22, 2022, 02:27:51 am »
Have a look at "paramstr" (
https://www.freepascal.org/docs-html/rtl/system/paramstr.html
).
You could execute a console/command-line with something like:
prog 42 foobar.txt
^0 ^1 ^1
within the program you access the parameters with code like
Code: Pascal
[Select]
[+]
[-]
program_exe
:
=
paramstr
(
0
)
;
some_number
:
=
paramstr
(
1
)
;
some_filename
:
=
paramstr
(
2
)
;
In Windows, you can also create a short-cut, then specify parameters, to run the program in a GUI.
cheers
S.
«
Last Edit: May 22, 2022, 02:29:44 am by speter
»
Logged
I climbed mighty mountains, and saw that they were actually tiny foothills.
Laz 2.2.0 / FPC 3.2.2 / Windows 11 (64bit)
eldonfsr
Sr. Member
Posts: 295
Re: Open Application with start values on windows
«
Reply #2 on:
May 22, 2022, 03:20:09 am »
Ok i understand but where check parameters on GUI on main form?
Logged
Thausand
Sr. Member
Posts: 259
Re: Open Application with start values on windows
«
Reply #3 on:
May 22, 2022, 03:51:21 am »
Quote from: eldonfsr on May 22, 2022, 03:20:09 am
Ok i understand but where check parameters on GUI on main form?
Depends. When you need parameters
Can be in project .lpr or mainform create or when click button or when open file or ...
Logged
speter
Sr. Member
Posts: 277
Re: Open Application with start values on windows
«
Reply #4 on:
May 23, 2022, 02:40:23 am »
Quote from: eldonfsr on May 22, 2022, 03:20:09 am
Ok i understand but where check parameters on GUI on main form?
I am not sure what you mean.
To add parameters to a short-cut:
right-click on the short-cut file (in windows explorer) and select "properties"; you can add the parameters after the EXE name (in Target).
To add parameters inside Lazarus IDE (for testing etc):
select "Run > Run Parameters" then add your parameters into "Command line parameters".
To check what parameters there are, I'd suggest using the FormCreate() procedure. Something like the code below.
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
FormCreate
(
Sender
:
TObject
)
;
var
a
:
byte
;
begin
memo1
.
append
(
'paramcount = '
+
paramcount
.
tostring
)
;
for
a
:
=
0
to
paramcount
do
memo1
.
append
(
'param '
+
a
.
tostring
+
' = '
+
paramstr
(
a
)
)
;
end
;
cheers
S.
Logged
I climbed mighty mountains, and saw that they were actually tiny foothills.
Laz 2.2.0 / FPC 3.2.2 / Windows 11 (64bit)
eldonfsr
Sr. Member
Posts: 295
Re: Open Application with start values on windows
«
Reply #5 on:
May 23, 2022, 11:20:28 pm »
Thanks i never use parameters to start app i was some confuse but i got run the app with parameters....
thanks so much for you help...
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Windows
»
Open Application with start values on windows
TinyPortal
© 2005-2018