Posts Tagged ‘Accessibility’
Warning: Use of undefined constant archives - assumed 'archives' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: Use of undefined constant page - assumed 'page' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
class="post-143 post type-post status-publish format-standard hentry category-accessibility category-c tag-accessibility tag-c tag-get_accrole tag-get_accstate tag-iaccessible tag-microsoft-active-accessibility tag-msaa">
August 12th, 2009
The C++ IAccessible interface offers a handful of methods that allow you to gather information or perform actions on an object. Each of these methods are well documented on MSDN, but it is up to the creator of an object to implement them correctly. In this article, I’ll be talking about a couple of the inconsistencies you may run into when using these methods due to improper implementations and a lack of restrictions on how they should be implemented.
» More: Microsoft Active Accessibility Methods and Inconsistent Implementations
Warning: Use of undefined constant archives - assumed 'archives' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: Use of undefined constant page - assumed 'page' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
class="post-63 post type-post status-publish format-standard hentry category-accessibility category-microsoft-excel-2007 category-microsoft-office-2007 tag-accessibility tag-accessibleobjectfromwindow tag-c tag-com tag-microsoft-active-accessibility tag-microsoft-excel-2007 tag-microsoft-office-2007">
July 15th, 2009
A couple days ago I showed you how to access the Microsoft Word 2007 COM API through Microsoft Active Accessibility (MSAA). Today, I’m going to switch it up just a little bit, and use the same method to access the Microsoft Excel 2007 COM API. Again, we’ll be using AccesssibleObjectFromWindow to get at the main Excel::Window object. From that object, you can obtain the Excel Application, and Excel Workbook objects. Some documentation from Microsoft can be found here.
» More: Access Microsoft Excel 2007 COM API through Microsoft Active Accessibility
Warning: Use of undefined constant archives - assumed 'archives' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: Use of undefined constant page - assumed 'page' (this will throw an Error in a future version of PHP) in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
Warning: A non-numeric value encountered in
/home/northa5/public_html/wp-content/themes/cordobo-green-park-2/archive.php on line
32
class="post-16 post type-post status-publish format-standard hentry category-accessibility category-microsoft-access-2003 category-microsoft-access-2007 category-microsoft-excel-2007 category-microsoft-office-2003 category-microsoft-office-2007 category-microsoft-word-2007 tag-accessibility tag-c tag-cplusplus tag-iaccessible tag-microsoft-access tag-microsoft-active-accessibility tag-microsoft-excel tag-microsoft-word tag-msaa">
July 10th, 2009
Over the next few months, I will be interacting with Microsoft Access, Word, and Excel 2007 through Microsoft Active Accessibility (MSAA) in C++. As my journey progresses, I will be posting the neat little tricks and painful quirks that I run into along the way. To start, here are a few resources you can use to read up on Microsoft Active Accessibility.
» More: A trip into the depths of Microsoft Active Accessibility (MSAA) through C++