Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Self updating textbox

Status
Not open for further replies.

ajtsystems

IS-IT--Management
Jan 15, 2009
80
GB
Hi,

Is there a way to update a textbox using wscript.echo without a new textbox popping up.

I am trying to reduce user interaction

wscript.echo "hello"
wscript.echo "hello again"
wscript.echo "goodbye"

all in the same box?
 
wscript.echo("hello" & vbcrlf & "hello again" & vbcrlf & "goodbye")
 
Use cscript instead of wscript

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top