So I have some code setup in vbscript and need to set the location of a msgbox
Dim max,min,ypos
max=13000
min=0
Randomize
ypos = Int((max-min+1)*Rnd+min)
Dim max1,min1,xpos
max1=23250
min1=0
Randomize
xpos = Int((max-min+1)*Rnd+min)
box=msgbox ("Subtext" ,0, "Text")
I'd like to use xpos
for the X, and ypos
for the Y
Also I use notepad, don't judge me.