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 vbscript procedure that converts feet to inches. Hint: there are 12 inches in a foot?
what is diff between static and dynaic arrys?
How will you convert a string to lower case string using vbscript?
What purpose does ‘on error resume next’ serves?
Can any one provide code for Mid(string,start[,length]). I have been asked to write code for Mid(). i.e We need to define our own function say MyMid() which should behave same like built-in Mid function
What are class variables?
How to remove the spaces in a string Ex: "this is apple"
how to retrieve native property value in runtime?
What aspects of vbscript make it safe so that a web page using vbscript cannot destroy or corrupt information on a user's computer?
Explain about tristate constants?
sunday is sunday monday tuesday wendesday sunday thursday friday saturday sunday sunday how to count no of sunday in the text file from vb? Answer me asap
I want good books or good sites for scripting.Can any one help me.