Forum Discussion
AlexeyKolosov
Staff
14 years agoHi Hoks,
Use the Object Spy window to capture the window object highlighted in the image attached to my post. After that, replace "<Window>" with the value of the captured window's FullName property in the following routine and execute it:
If such an approach does not accomplish your task, please describe the behavior you observe when executing this routine.
Use the Object Spy window to capture the window object highlighted in the image attached to my post. After that, replace "<Window>" with the value of the captured window's FullName property in the following routine and execute it:
Sub Test
Dim o
Set o = <Window>
Call o.Click
Call Sys.Desktop.KeyDown(&h31)
Call Sys.Desktop.KeyUp(&h31)
Sys.Desktop.KeyDown(&h32)
Sys.Desktop.KeyUp(&h32)
End Sub
If such an approach does not accomplish your task, please describe the behavior you observe when executing this routine.