I just signed up for Google Voice and put a widget to the right that will connect you directly to my voicemail. (Sorry, no live calls...). If you need help with something, feel free to leave me a voicemail and I'll return your call.
hi.. i like your blog very much and it helped me alot to increase my technical skills in vbscript.
i will be grateful if you can give an idea that how to display no. in matrix for in the message box. e.g i want to display like this in message box. 10 20 30 40 50 60 70 80 90 plz. help me -- thanks
Just use VBcrlf to break the line. VBcrlf is a system variable for carriage return line feed. Basically it tells it the line is done and to return back, like hitting enter in Word. Hope it helps!
3 comments:
How can I find FQDN of a List of 500 machines? Please help.
hi..
i like your blog very much and it helped me alot to increase my technical skills in vbscript.
i will be grateful if you can give an idea that how to display no. in matrix for in the message box.
e.g i want to display like this in message box.
10 20 30
40 50 60
70 80 90
plz. help me
--
thanks
Simple:
Msgbox "10 20 30" & VBcrlf & "40 50 60" & VBcrlf & "70 80 90"
Just use VBcrlf to break the line. VBcrlf is a system variable for carriage return line feed. Basically it tells it the line is done and to return back, like hitting enter in Word. Hope it helps!
Post a Comment