write a vb script to display 3*3 matrix
Answer / mudaseer
dim varr(2,2)
for i=0 to 2 step 1
for j=0 to 2 step 1
varr(i,j)=inputbox("enter the value")
next
next
for i=0 to 2 step 1
for j=0 to 2 step 1
vstr=vstr & varr(i,j) & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
| Is This Answer Correct ? | 10 Yes | 3 No |
write a vb script to find simple interest using functions
write a vb script to display first 5 odd numbers from 1 to 100
write a vb script to display the reverse of vbs
Write a VB Script to count blank Lines in a notepad
Explain about the extension .hta?
What is Querystring collection?
Explain the adodb.stream class?
How will you generate Reports using Vb Script?it asked in testing(QTP)Interview.Plz Any Body Let me know. Thanks uday Uday_testing@yahoo.co.in
how to organize files in object repository of qtp
Give examples where vb script can directly run on users system with windows as os?
how to genarate a random numbers in vb?
* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?