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 |
What is the difference between do until loop and do while loop?
how to increasing the numbers in a given text box please write a vb script
Please let me Know regarding any material regarding VB Scripting which should be easily understandable for Beginners.
. Program for sorting of numbers in vb script?
How can I write HTML text to the window in VB Script?
if u ve resrevation for train and u get a number supose 1234xxxokie.after sucessul entering all required fields. now u put that number in search and want to chk wether these ar same or not if both ar same then its okie otherwise test fail.what would be the vb script code for it to compare these two values of different page.
Explain sga memory structures?
What is the use of the date function in the vbscript language?
How to create pull down menu box using vb script
what is the object hyrarchy in QTP for a web based application
What is the equivalent of VBScript?s On Error In Jscript ?
How to Pass Multiple values in functions by using vb script? Function value(arg1,arg2) N1=arg1+arg2 N2=arg1-agr2 N3=arg1*agr2 N4=arg1/arg2 Value= How to pass ? End Function