From what I've come across with similar projects is that most Setu
programs have a way to select everything with keystrokes. In the past
I have run through the setup using the keyboard only and mimicked the
in a .wsh file. Basically, you end up with a whole lot of tabs...
Results may vary since some setups may skip certain things in the setu
based on the user's current configuration. You can look at which ta
of the setup is open using AppActivate and I'll attach a code snippet.
As for your actual question, I cannot think of a way to select a radi
button or checkbox.
K
Code
-------------------
Set WSS251 = CreateObject("Wscript.Shell")
WSS251.Run PE251CD & "Setup.exe",1,TRUE
Do Until WSS251.AppActivate("Welcome")
Loop
WSS251.SendKeys "~"
Do Until WSS251.AppActivate("Software License Agreement")
Loop
WSS251.SendKeys "~"
Do Until WSS251.AppActivate("Enter User Information")
Loop
WSS251.SendKeys " "
WScript.Sleep 100
WSS251.SendKeys "PLANT"
WScript.Sleep 100
WSS251.SendKeys "{TAB}"
WSS251.SendKeys "Joe Bob Inc."
WSS251.SendKeys "{TAB}"
WSS251.SendKeys "{TAB}"
WSS251.SendKeys "~"
Do Until WSS251.AppActivate("Enter License Keys Disk")
Loop
WSS251.SendKeys "{TAB}"
WSS251.SendKeys "{TAB}"
WSS251.SendKeys "~"
Do Until WSS251.AppActivate("Choose Directory")
Loo
-------------------
--
Message posted from
http://www.ExcelForum.com