Can anyone help me in write coding to get this pattern
*
**
***
****
Answers were Sorted based on User's Feedback
Option Explicit
Dim i,j,k
for i=1 to 5
for j=1 to i
k=k&"*"&" "
Next
k=k&" "&vbnewline
next
msgbox k
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anil
For i=0 To 4
For j=0 To i
vstr=vstr&"*"&""
Next
vstr=vstr &" "
Next
msgbox vstr
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / chandu
a=4
for i=1 to a step 1
b= string(i,"*")
c=c&" "&b
next
msgbox c
| Is This Answer Correct ? | 1 Yes | 1 No |
what is the use of Data base check point ?
how to genarate a random numbers in vb?
In what way program "hello world" you can write in vbscript?
What purpose does ‘on error resume next’ serves?
Join the multiple array with out using JOIN function
Explain about the asc function?
There are 5 web pages.write a script to click the button on 4th web page.
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)
Mention the environments where vbscript could be run?
reverse the string without using reverse string?
What is the difference between VBScript and JavaScript?
Which date function is used in the vbscript language to find the difference between the 2 dates?