paulSeldon
3rd July 2007 18:46 UTC
global variable to store the String
< global variable to store the String >
After I check Window Media Player has been installed or not,
I would like to store yes or no value into the global variable.
_____________________________________________
Var IsWMPInstalled;
_____________________________________________
How I can set the String value to thie global variable?
Please help.
Red Wine
3rd July 2007 19:05 UTC
StrCpy is the easiest way that I know so far,
http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.8.1
EDIT: Could you imagine a support like this elsewhere?
n0On3
3rd July 2007 19:06 UTC
if by that question you mean how to copy a string to a variable, well the answer is simple:
StrCpy $variable "hello dolly"
[oh, red wine beat me]
[[but I beat kichik :D]]
kichik
3rd July 2007 19:07 UTC
Using StrCpy.
paulSeldon
4th July 2007 08:14 UTC
I'm a newbie -
Thanks for the hyperlink.
I will start reading from there.