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 |
Could Anybody tell me the VBscript for REVERSE an Integer int reverse(int num) Ex:246 to 642
What is the use of "Option Explicit"?
What is sql loader? Explain the files used by sql loader to load file?
what is visual basic?
What are the 2 ways to pass a value to the function?
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)
What is the use of the instr function?
accept an email id & validate it .email id should not exceed 25 characters the mail id should contain 3 characters excluding domain name,@ and .(dot) the last 3 characters of the domain should be net,com or org
Which date function is used in the vbscript language to find the difference between the 2 dates?
Which event is triggered when mouse focus comes out of an element in the vbscript language?
What is the difference between javascript and vbscript?
i need to login to my yahoo accoutnt using VB Script, automating the operation of webobjects, even launching of IE. How?