Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > Visual Basic.Net > Automation


Search:
What's New - What's Hot
HOW TO: Handle Document Events in a Visual Basic .NET Application     
Total Hits: 1046  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to catch document events for the WebBrowser control in Visual Basic .NET....

HOWTO: Use the WebBrowser Control to Open an Office Document in Visual Basic .NET     
Total Hits: 2435  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

You may want to display, or embed, an Office document directly on a Visual Basic .NET Form. Unlike earlier versions of Visual Basic, Visual Basic .NET does not provide an OLE control that allows you to embed an Office document on a form. If you want to embed an existing document and open it as an in-place ActiveX document object within a Visual Basic .NET form, a potential solution for you is...

HOWTO: Use Automation to Create and Show a PowerPoint Presentation with Visual Basic .NET     
Total Hits: 1914  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This step-by-step article describes how to automate PowerPoint from Visual Basic .NET to create and then show a PowerPoint presentation....

How to: Add Rows and Columns to Word Tables  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

In a Microsoft Office Word table, the cells are organized into rows and columns. You can use the Add method of the Rows object to add rows to the table and the Add method of the Columns object to add columns....

Writing Assemblies in Multiple Languages     
Total Hits: 460  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Most of us already know about the wide array of languages the .NET Framework supports. We also know that we can code assemblies that make up projects using different languages. Something that we might not be so aware of is, coding one assembly using more than one language....

Word Automation using VB.NET PART-I  Version: 0.00     Price: $0.00  
Total Hits: 58  |  Today: 0Author: koolprasad2003      Rating:  
Read Reviews | Write Review |  Your Rating: 

Many developer do not know about the word automation and it's advantages. so here is the simple demo program gives you a short idea of word automation using VB.NET. and Word 2003...

Automating Microsoft Excel and Word Together     
Total Hits: 120  |  Today: 0Author: Smith_TVPM      Rating:  
Read Reviews | Write Review |  Your Rating: 

In many cases, it is required to use MS Excel or Word in our VC++ applications. Automating them in VC is easy, but when it is done as a DLL in VB, it is simply a few lines of code, and the result lies in its simplicity. Here, I have designed a DLL in MS Visual Basic which automates both MS Excel and MS Word. Upon importing the DLL to our VC workspace, we can use both these capabilities....

Word Style Automation     
Total Hits: 80  |  Today: 0Author: Amr M. K.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article discusses how to set the style of your Word Document using a template file and an Excel File.

Styles name is saved in an Excel File, and style formation in a template file. Word Document is parsed, and depending on Search Text, MaxFinds, Style will be set....

Get Supported UI Automation Control Patterns     
Total Hits: 60  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

1. Get the AutomationElement whose control patterns you are interested in.
2. Call GetCurrentPattern or TryGetCurrentPattern to query for a specific pattern. These methods are similar, but if the pattern is not found, GetCurrentPattern raises an exception, and TryGetCurrentPattern returns false....

Expose the Content of a Table Using UI Automation     
Total Hits: 67  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The following code example demonstrates how to obtain a AutomationElement that represents the content of a table cell; cell properties such as row and column indices, row and column spans, and row and column header information are also obtained. This example uses a focus change event handler to simulate keyboard traversal of a tabular control that implements UI Automation. Information for each table item is exposed on a focus change event....

Navigate Among UI Automation Elements with TreeWalker     
Total Hits: 103  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This topic contains example code that shows how to navigate among Microsoft UI Automation elements by using the TreeWalker class. The following example uses GetParent to walk up the Microsoft UI Automation tree until it finds the root element, or desktop. The element just below that is the parent window of the specified element....

Get UI Automation Element Properties     
Total Hits: 64  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

#

btain the AutomationElement whose property you wish to get.
#

Call GetCurrentPropertyValue, or retrieve the Current property structure and get the value from one of its members....

Subscribe to UI Automation Events     
Total Hits: 55  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The following example code registers an event handler for the event that is raised when a control such as a button is invoked, and removes it when the application form closes. The event is identified by an AutomationEvent passed as a parameter to AddAutomationEventHandler....

Use the AutomationID Property     
Total Hits: 64  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This topic contains scenarios and sample code that show how and when the AutomationIdProperty can be used to locate an element within the UI Automation tree. AutomationIdProperty uniquely identifies a UI Automation element from its siblings. For more information on property identifiers related to control identification, see UI Automation Properties Overview....

UI Automation and Screen Scaling     
Total Hits: 38  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Windows Vista enables users to change the dots per inch (dpi) setting so that most user interface (UI) elements on the screen appear larger. Although this feature has long been available in Microsoft Windows, in previous versions the scaling had to be implemented by applications. In Windows Vista, the Desktop Window Manager performs default scaling for all applications that do not handle their own scaling. UI Automation client applications must take this feature into account....

Expose a Server-side UI Automation Provider     
Total Hits: 46  |  Today: 0Author: Microsoft Corporation.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This topic contains example code that shows how to expose a server-side UI Automation provider that is hosted in a System.Windows.Forms..::.Control window. The example overrides the window procedure to trap WM_GETOBJECT, which is the message sent by the UI Automation core service when a client application requests information about the window....

Raise Events from a UI Automation Provider     
Total Hits: 50  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

In the following example, a UI Automation event is raised in the implementation of a custom button control. The implementation enables a UI Automation client application to simulate a button click....

Return Properties from a UI Automation Provider     
Total Hits: 47  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This topic contains sample code that shows how a UI Automation provider can return properties of an element to client applications. For any property it does not explicitly support, the provider must return null (Nothing in Visual Basic). This ensures that UI Automation attempts to obtain the property from another source, such as the host window provider....

Enable Navigation in a UI Automation Fragment Provider     
Total Hits: 52  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The following example code implements Navigate for a list item within a list. The parent element is the list box element, and the sibling elements are other items in the list collection. The method returns null (Nothing in Visual Basic) for directions that are not valid; in this case, FirstChild and LastChild, because the element has no children....

UI Automation Security Overview     
Total Hits: 41  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Security is a major focus of Windows Vista and among the innovations is the ability for users to run as standard (non-administrator) users without necessarily being blocked from running applications and services that require higher privileges. In Windows Vista, most applications are supplied with either a standard or an administrative token. If an application cannot be identified as an administrative application, it is launched as a standard application by default. Before an application identifi...


1  2  


Disclaimer - Privacy
© 2002-2012 DevASP.net