write a vb script to display
*****
*****
*****
*****
*****
Answers were Sorted based on User's Feedback
Answer / mudaseer
for i=1 to 5 step 1
for j=1 to 5 step 1
vstr=vstr & "*" & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / eswar
cnt =0
x = "*"
For i=1 to 25
y=y&x
cnt = cnt+1
If cnt = 5 Then
cnt = 0
y = y&" "
End If
Next
MsgBox y
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prathyusha
for i=1 to 5
for j=1 to 5
v=v&"*"
next
n=n&vbcrlf&v
next
msgbox n
| Is This Answer Correct ? | 0 Yes | 0 No |
What are subprocedures in vbscript?
How to make sure that items in a wintree are sorted al?
How can I write HTML text to the window in VB Script?
how to find greatest of n numbers!
How many data types are supported in Vbscript?
How strcomp function works?
Is VBscript case-sensitive?
What is the purpose of regexp object in vbscript?
Mention what are the rules to name variable in vbscript?
How will you convert a string to lower case string using vbscript?
write a vb script to open a text file and write into it
VBscript for QTP,best tutorial?