Jul 21, 2006 #1 bigdubbe Programmer May 26, 2006 11 US I was wondering if there was anyway to put a user define variable from answer given perviously in a dialog box, in a popup box.
I was wondering if there was anyway to put a user define variable from answer given perviously in a dialog box, in a popup box.
Jul 21, 2006 #2 IknowMe Programmer Aug 6, 2004 1,214 US Not sure I understand what your getting at, can you give us more info? try uservar = InputBox("give me a variable") msgbox uservar Wow, I'm having amnesia and deja vu at the same time. I think I've forgotten this before. Upvote 0 Downvote
Not sure I understand what your getting at, can you give us more info? try uservar = InputBox("give me a variable") msgbox uservar Wow, I'm having amnesia and deja vu at the same time. I think I've forgotten this before.
Jul 21, 2006 #3 Skie Programmer Jun 21, 2004 475 US If you want to be able to change it: Code: oldVar = InputBox("Your variable","Title",oldVar) If you just want to display it: Code: msgbox "This is your variable: " & oldVar Upvote 0 Downvote
If you want to be able to change it: Code: oldVar = InputBox("Your variable","Title",oldVar) If you just want to display it: Code: msgbox "This is your variable: " & oldVar
Jul 22, 2006 Thread starter #4 bigdubbe Programmer May 26, 2006 11 US I am crappy at explain what I want but you guys always come through. Worked great thank you. Upvote 0 Downvote