Archive: global variable to store the String


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.


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?


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]]


Using StrCpy.


I'm a newbie -
Thanks for the hyperlink.
I will start reading from there.