i was wondering if it was possible to have a variable within a variable.
i have this section of code from my messeging program i'm making:
set /p user=Send To:
set /p m=Message:
net send %%user%% %m%
the Send To: thing lets you type in a person to send to (e.g. Bob)
well in the environment variables, Bob=(the computer number)
how can i get the net send to equal net send %Bob% %m% ?????
thanks for any help anybody can give me