write a vb script to generate the following pattern
*****
****
***
**
*
Answer Posted / miko
Dim x,i,j
For i=1 To 5
For j=1 To i
x=x&j
Next
x=x&vbNewLine
next
MsgBox x
***********output*********
1
12
123
1234
12345
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What are lbound and ubound in the vbscript language?
What is the technology used by vb script?
If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?
how to increasing the numbers in a given text box please write a vb script
How to Import data from a file (file is on the desktop) to the data table
What are the naming conventions while declaring a variable in the vbscript language?
1.I want to establish connection with excel and also want to fetch the data using SQL queries. 2.the code should be written in such a way that in future if I want to migrate from excel to MS excess database , then there should be minimal changes.
What are string functions in vbscript?
1. How to handle object implementation change in DP for Ex: i have login page with username,pasword (editboxes),login,cancel(buttons). Here i written DP code for login page with the help properties. My questions: 1.If properites are changing dynamically i will do (i want code for that) 2.if objects are changed dynamcally i will do (i wnat code for that)
Write program for identifyig duplicates in flight Departing from and Arriving in mercury tours(web application).
How can you create an object in vbscript?
When are redim statement and preserve keyword used in the vbscript language?
How can you destroy an object in vbscript?
Explain vbscript in detail?
Mention what is select case statement?