Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Friday, September 03, 2010

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

Build the right apps the right way with powerful development tools.
Visual Studio 2010. Learn more...

Home > Search > Articles & Samples > Visual Basic.Net > Automation
Search:
What's New - What's Hot


Find and Highlight Text Using UI Automation        
Total Hits: 183  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

The following example obtains a TextPattern object from a text control. A TextPatternRange object, representing the textual content of the entire document, is then created using the DocumentRange property of this TextPattern. Two additional TextPatternRange objects are then created for the sequential search and highlight functionality....

Automatically Updating Visual Basic 6 Applications: Part I        
Total Hits: 97  |  Today: 0 Author: Scott Swigart       Rating:  
Read Reviews | Write Review |   Your Rating: 

Deploying applications is hard. It takes time to build and test installers. Applications often require additional COM components to operate, and these components require registration. You also have to consider how you're going to physically distribute the bits. Will you burn a CD? Will you zip them up and place them on a website for downloading? Will you use a product like SMS to push them out?...

50 Ways to Kill Excel        
Total Hits: 448  |  Today: 0 Author: rox.scott       Rating:  
Read Reviews | Write Review |   Your Rating: 

How to get rid of Excel.EXE processes in task manager. How to create and dispose of office automation objects in VB.NET...

HOWTO: Automate Visio with Visual Basic .NET        
Total Hits: 2117  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to automate Visio using Visual Basic .NET....

HOWTO: Handle Events for Microsoft Word Using Microsoft Visual Basic .NET        
Total Hits: 2908  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to handle Word events from an Automation client that is created with Visual Basic .NET....

How to use automation to create and to show a PowerPoint presentation by using Visual Basic .NET 2002 or Visual Basic .NET 2003        
Total Hits: 135  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to use automation to create and to show a Microsoft PowerPoint presentation by using Microsoft Visual Basic .NET 2002 or Visual Basic .NET 2003. Start Microsoft Visual Studio .NET 2002 or Visual Studio .NET 2003. On the File menu, click New and then click Project. Select Windows Application from the Visual Basic Projects types. Form1 is created by default....

Test Automation for ASP.NET Web Apps with SSL        
Total Hits: 93  |  Today: 0 Author: James McCaffrey       Rating:  
Read Reviews | Write Review |   Your Rating: 

If you're encrypting user data with Secure Sockets Layer (SSL) over HTTP and you want to test your Web applications programmatically you'll find that the techniques are not widely known. In this month's column I'll show you how to set up a test SSL server and write test automation that verifies the functionality of a simple but representative Web application....

API Test Automation in .NET        
Total Hits: 107  |  Today: 0 Author: James McCaffrey       Rating:  
Read Reviews | Write Review |   Your Rating: 

The most fundamental type of software test automation is automated API testing. API testing essentially entails testing the individual methods that make up a software system rather than testing the overall system itself. API testing is also called unit testing, module testing, component testing, and element testing. Technically the terms are quite different, but in casual usage you can think of them as having roughly the same meaning. The idea is that you must make sure the individual building b...

Low-Level UI Test Automation        
Total Hits: 144  |  Today: 0 Author: James McCaffrey       Rating:  
Read Reviews | Write Review |   Your Rating: 

There are several ways to test a Windows®-based application through its user interface. For example, in the January 2005 issue of MSDN®Magazine (Test Run: Lightweight UI Test Automation with .NET) I described a lightweight technique for testing .NET-based applications using .NET reflection. Since then, many of you have asked how to perform lower-level tasks like clicking away a Message Box. This column answers all those questions by showing you how to write lightweight, low-level UI test automat...

Writing Assemblies in Multiple Languages        
Total Hits: 441  |  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....

HOW TO: Handle Document Events in a Visual Basic .NET Application        
Total Hits: 1024  |  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 Automation to Create and Show a PowerPoint Presentation with Visual Basic .NET        
Total Hits: 1884  |  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....

HOWTO: Send E-mail Programmatically with System.Web.Mail and Visual Basic .NET (Q314201)        
Total Hits: 2127  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to use System.Web.Mail to send an e-mail message in Visual Basic .NET.
  1. Start Microsoft Visual Studio .NET. On the File menu, click New and then click Project. Click Visual Basic Projects, click the Console Application template, and then click OK. By default, Module1.vb is created.
  2. ...

HOW TO: Automate MapPoint by Using Visual Basic. NET (Q305200)        
Total Hits: 1767  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article demonstrates how to use MapPoint 2002 functionality from an Automation client that is developed with Visual Basic .NET. This article describes each step that is involved in building the Automation client. You may also download this sample....

HOWTO: Use Automation to Create Office Command Bars and Controls with Visual Basic .NET (Q303017)        
Total Hits: 1354  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to automate Excel to create a command bar that contains buttons, drop-down list boxes, combo boxes, and pop-up menus....

HOWTO: Use Automation to Get and Set Office Document Properties with Visual Basic .NET (Q303294)        
Total Hits: 3128  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article illustrates how to automate Word with Visual Basic .NET to retrieve and manipulate document properties. Although the sample in this article is specifically written to automate Word, the same concepts can be applied to Excel and PowerPoint....

Excel automation in VBScript        
Total Hits: 287  |  Today: 0 Author: ketan_lohar       Rating:  
Read Reviews | Write Review |   Your Rating: 

When we develope office applications we need to automate Excel Activity.This can be achieved by VBScript. VBScript support "Excel.Application". Through which we can do comman excel taskautomatically....

How to Write a GPS Application        
Total Hits: 459  |  Today: 0 Author: developerfusion       Rating:  
Read Reviews | Write Review |   Your Rating: 

What is it that GPS applications need to be good enough to use in a commercial environment, such as in-car navigation? Also, how does the process of interpreting GPS data actually work? In this Author will cover both topics and give you the skills you need to write a commercial-grade GPS application that works with a majority of GPS devices in the industry today....

HOWTO: Use the WebBrowser Control to Open an Office Document in Visual Basic .NET        
Total Hits: 2409  |  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...

How to: Add Rows and Columns to Word Tables    Version: 0.00       Price: $0.00   
Total Hits: 17  |  Today: 0 Author: 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....


1  2  3  Next >> 

DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net