Am 26.05.2010 15:34, schrieb Clax:
>> http://en.wikipedia.org/wiki/Compiler
>>
>
> i explain more with example.
> --------------------
> num=1234
> varx=763
> i=23
> while
>
> ---- istruction
> i+=1
> end while
>
> msgbox(@textbox1.text)
>
> -----------------
>
> if in textbox1.text="num" in msgbox write 1234
> if in textbox1.text="varx" in msgbox write 763
> if in textbox1.text="i" in msgbox write the actuale value of variabile
> i
>
>
> in visual dbase 5.5 il i write @inputtext for this
Is visual dbase a compiler?
You're asking the user to enter a name known to the programmer only.
How can the user know? Variable names are placeholders for memory
addresses. When the native code is executed, there are no names anymore,
just addresses.
Maybe you are looking for this:
http://msdn.microsoft.com/en-us/library/xfhwa508(VS.90).aspx
--
Armin