write a vb script to generate 3*3 matrix
Answers were Sorted based on User's Feedback
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
msgbox vstr
vstr=vstr & vbnewline
next
msgbox vstr
by mudaseer20@gmail.com
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / smita
dim varr(2,3)
for i=0 to ubound(a,1)
for j=0 to ubound(a,2)
varr(i,j)=inputbox("enter the value")
next
next
for i=0 to 2 step 1
for j=0 to 3 step 1
vstr=vstr & varr(i,j) & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
| Is This Answer Correct ? | 0 Yes | 0 No |
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
write a text script to display * as below ********** **** **** *** *** ** ** * * * * ** ** *** *** **** **** **********
compare the string without using stringcomp function?
How to use Text file (Notepad) as ur data source in QTP? Can u please provide some function code for it?
Can anyone send me a vb script function for verifying the functionality of active links on a web page
what is the use of QCUtil? explain with one example?
Which operator is used to concatenate the 2 values in the vbscript language?
Explain the arrays in vb script?
can any body give the code to write the function for given suppose user login with usrer id and pwd to yahoomail.after cliking "sign in"if it is valid user id the next page will display userid'message box.( Note u have to use excel sheet to retrive the userid's data)
i want to when we will write the scripts either after getting the build or after getting the SRS?
How do you get the value of a combo box in Javascript?
What is vbscript procedures?