Buenas tengo un problemas con los codigos de mi app
pues mi idea es que esta app abra un archivo.vbs y modifique user y password
con 2 textbox y 2 botones
Codigo del vbs
Imagen del programa:
pues mi idea es que esta app abra un archivo.vbs y modifique user y password
con 2 textbox y 2 botones
Codigo del vbs
Citarset wshshell = createobject("wscript.shell")
wscript.sleep 1
for i=1 to 1
wshshell.sendkeys "w"
wshshell.sendkeys "{enter}"
next
set wshshell = createobject("wscript.shell")
wscript.sleep 9000
for i=1 to 1
wshshell.sendkeys "usuario"
wshshell.sendkeys "{tab}"
wshshell.sendkeys "password"
wshshell.sendkeys "{enter}"
next
set wshshell = createobject("wscript.shell")
wscript.sleep 5000
for i=1 to 1
wshshell.sendkeys "{enter}"
next
Imagen del programa: