vbscript - How can I make a VBS Message Box appear in a random place? -


in vbs script, have created simple message box application. stays in front of windows until user responds , uses simple coding

    x=msgbox("test text" ,1+4069, "test title") 

but appears in same place. there way of making appear in random place on screen? please help!

there 1 type of box allows position on screen: inputbox

title = "hello" defaultvaluetext = "hello stackoverflow !" message = "type here" xpos = 0 ypos = 0 text = inputbox(message,title,defaultvaluetext,xpos,ypos) xpos = 3000 ypos = 800 text = inputbox(message,title,defaultvaluetext,xpos,ypos) 

Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -