RE: New Visual Studio Script

2015-03-21 Thread Chip Orange via Scripting
indows, and who is a child of whom. Compare some of the names to those in your log. Hth, Chip -Original Message- From: Rick Thomas [mailto:ofbgm...@mi.rr.com] Sent: Saturday, March 21, 2015 3:21 PM To: 'Chip Orange'; 'Window-Eyes Scripting List' Subject: RE: New

RE: New Visual Studio Script

2015-03-21 Thread Rick Thomas via Scripting
Hi Chip et al: Below is about as simple as I can get and eliminating the process filter did not help. So you guys are the pros from Dover, what next? Will posting the WEEvent lines help? Which objects or events do you want to see in particular? Do you want to see the properties for the Overlap Wind

RE: New Visual Studio Script

2015-03-21 Thread Rick Thomas via Scripting
x27;Window-Eyes Scripting List' Subject: RE: New Visual Studio Script If it's showing up in the log, then it is firing. So, it must be you're not using that's showing up in the WEEvent log. Remember a lot of things could possibly make the clientInformation.overlap propert

RE: New Visual Studio Script

2015-03-21 Thread Chip Orange via Scripting
h 21, 2015 1:34 PM To: 'Rick Thomas'; 'Window-Eyes Scripting List' Subject: RE: New Visual Studio Script Hi: The Event handler sub does not appear to be firing but the event is showing up in the WEEvent log. Any ideas why or what to try next? Option Explicit Dim myMSAA

RE: New Visual Studio Script

2015-03-21 Thread Chip Orange via Scripting
indow-Eyes Scripting List' Subject: New Visual Studio Script First, how do I copy and paste error compile or run time error messages for posting to the list? Below is the script, only a few lines, with my question Note that in the original script I did not see where windowObj was set to anyth

RE: New Visual Studio Script

2015-03-21 Thread Rick Thomas via Scripting
Hi: The Event handler sub does not appear to be firing but the event is showing up in the WEEvent log. Any ideas why or what to try next? Option Explicit Dim myMSAAEventSource : Set myMSAAEventSource = MSAAEventSource myMSAAEventSource.Process = ClientInformation.ApplicationProcess Dim windowObj Se

Re: New Visual Studio Script

2015-03-21 Thread Jonathan C Cohn via Scripting
Rick, when working with Objects you need to use “set” with the assignment operation. set myWindow = FocusedWindow Otherwise VB will think the variable is a scaler. This is another advantage of Chips environment. dim myWindow as WindowEyes.Window : myWindow = ClientInformation.OverlapWindow

New Visual Studio Script

2015-03-21 Thread Rick Thomas via Scripting
First, how do I copy and paste error compile or run time error messages for posting to the list? Below is the script, only a few lines, with my question Note that in the original script I did not see where windowObj was set to anything - could have been the problem so testing this: ' VS2013 Op