Answer Posted / 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 |
Post New Answer View All Answers
How will you format a number in percetage format in vbscript?
Why is it recommended to close the database connection every time after the work is completed?
How regexp.execute method works?
What is loose binding? Why is it not a good practice to use it?
What are the differences between sub procedures and function procedures?
How to pass argument by reference to a function in vbscript?
What is Procedure or Subroutine in VB Script?
What's the difference between vbscript and vb.net?
why do u choose to go for testing why cant for devoloping
How to identify column in VSFlexgrid? My VSFlexgrid window is identified as 'Active X Control'
Why is the use of exit do or exit for statements within loops discouraged?
i wrote vbscripit code in notepad i got error i am in learning stage if u ps tell me what wrong in my code my error is "object required descriptive at line one run time error"and my code is "set usernameobj=Descriptive.Create() usernameobj( "name").value="Username" set passwordobj=Descriptive.Create() passwordobj("name").value="password" set signinobj=Descriptive.Create() signinobj("name").value="sigin" browser("gmail").page("gmail").WebEdit("usernameobj").set ("enter username") Browser("gmail").Page("gmail").WebEdit("passwordobj").Set secure.Crypt.Encrypt("enter password") browser("gmail").page("gmail").WebButton("siginobj").click
Which object is used to work with the excel sheets in the vbscript language and what statement is used to create this object?
Explain what is loose binding? Why is it not a good practice to use it?
How to create a function in vbscript?