Tagged Questions
5
votes
3answers
170 views
VBA:Editor. How to collapse worksheets by default
I work with several workbooks containing 10-15 Worksheets and several modules.
Whenever I open the VBA-Editor, or bring it back into focus, the project explorer has expanded the "Microsoft Excel ...
12
votes
1answer
192 views
What is the correct solution to support IAccesible interface for caret movement in text editors?
I want to implement a text editor from scratch which supports IAccessible interface. I am using MFC and Win32 API.
When the caret position change in the standard text editors like Notepad, the ...
0
votes
1answer
320 views
How to get text from a windows control's textbox? and how do I know it's a textbox?
I've used spy++ to find the right handle of the wanted windows control, which belongs to a standalone application which isn't managed.
Note that the spy++ "property inspector" mentions that this ...
2
votes
1answer
73 views
Does utilizing the Windows User Interface API risk incompatibility between different versions of Windows?
I am working on a C# Excel VSTO add-in that utilizes the user32.dll to do some black magic with the excel UI. I am not very experienced in using Win32, and I am wondering:
Do I need to worry about ...
2
votes
1answer
746 views
Read cell Items from data grid in SysListView32 of another application using C#
I am trying to read data grid items in SysListView32 of another process using C# .net ui-automation and winapi
C# code using ui-automation
http://pastebin.com/6x7rXMiW
C# code using winapi
...
0
votes
1answer
186 views
How to get the list of enumerated certificates in a windows security dialog
I am trying to automate a test which involves authenticating to a website through a smartcard.
I am using c#, windows 7.
When I launch the url, a windows security window comes up asking me to select ...
1
vote
1answer
273 views
How to move an UI automation element to a different location?
I have a C#.NET app where I am able to find a AutomationElement at a particular point using FromPoint function.
Now I want to manipulate that AutomationElement so that I can move it to a different ...
2
votes
2answers
355 views
Run windows application inside another window
Is it possible to run a windows application (that opens a top-level window), inside of another window? Or set up an alternate 'desktop' / fake desktop, that owns the window?
I am using UI Automation ...
1
vote
1answer
285 views
Use UI Automation for old third party controls
Is there out-of-the-box way to create UI Automation provider for third party controls that not support UI Automation?
My problem: I try to automate vb6 application with VsFlexGrid ActiveX control and ...
2
votes
0answers
559 views
WinApi: Get Control Name of COM Forms
I want to replace my current UI automation tool (QTP) with .Net framework.
I need to test VB6 (COM) application.
One of the fundamentals of framework is using the form name.
So far I failed to find ...
2
votes
1answer
800 views
Is it possible to get the selected text of any window including non-UI automation elements?
Is it possible to get the selected text of any window including non-UI automation elements?
I want to be able to get the selected text of the current contents of the currently focused element of any ...
0
votes
1answer
1k views
How to get Control/Windows Handle/AutomationElement that receives mouseclicks at specific point?
I am trying to get a control at a specific screen coordinate which I have given. Now I want to know which control would receive a mouse-click. (The control is in another application in an UI ...
1
vote
3answers
937 views
win32 vs UI Automation
If your making a software using the following:
C#
Net4
Windows Forms
to manipulate another Software what would you prefer and why ? and what advantages you would get for each over the other ?
0
votes
1answer
2k views
user32.dll FindWindowEx, finding elements by classname on remote WPF window
I have a WPF application that is being started from a command-line application.
I am trying to do some simple automation (get/set text, click some buttons, etc). I cannot seem to find any of the ...
1
vote
1answer
615 views
Get component type of custom .NET class from window handle
I need to see the component type, meaning the name of the class that was programmed, of a clicked control in another process. I need the type so I can react to the clicked control and then do some ...
2
votes
1answer
1k views
Funky results when using UI Automation to get items in a ComboBox
We are using the code below to get a list of items out of a ComboBox inside another application's window. This code works (correctly retrieves the list of items) for ComboBoxes in any other ...
2
votes
2answers
1k views
How to Invoke Shortcuts Keys in the UI Automation? / .NET
I'm writing program to automate win32 form. I'm using Microsoft UI Automation library. I don't know how I can get and invoke predifined shortcuts key on that form. Now I simply get AutomationElement ...