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 > Knowledge Base > Visual Basic.Net
Search:
What's New - What's Hot
Listings for Automation Automation (15)
Listings for Base Class Libraries Base Class Libraries (8)
Listings for Compiling Compiling (2)
Listings for Component Component (12)
More Categories for Database Database (103)
Listings for Debugging Debugging (2)
Listings for Error Handling Error Handling (8)
More Categories for Errors and Bugs Errors and Bugs (69)
Listings for Exceptions Exceptions (5)
More Categories for File Management File Management (12)
Listings for Migration to VB.NET Migration to VB.NET (12)
Listings for Miscellaneous Miscellaneous (40)
Listings for Object Pooling Object Pooling (13)
More Categories for Office Documents Office Documents (23)
Listings for Operating System Operating System (17)
Listings for Reference Reference (2)
Listings for Regular Expression Regular Expression (4)
Listings for Server Application Server Application (8)
More Categories for Server Controls Server Controls (20)
Listings for Threading Threading (8)
Listings for User Controls User Controls (11)
Listings for VB.Net and XML VB.Net and XML (71)
Listings for Windows Form Windows Form (33)
 


How To Retrieve Values from DataRows That Are Marked "Deleted" by Using Visual Basic .NET     
Total Hits: 121  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

You can use ADO.NET DataTable objects to delete rows and mark them as "Deleted." This article demonstrates how to retrieve the values of a row whose DataRowState enumeration is set to DataRowState.Deleted.You can use the DataRowVersion.Original enumeration value to retrieve the values of a row that has the DataRowState.Deleted enumeration value. You must use DataRowVersion.Original because the values of a deleted row are not available for the current state (DataRowVersion.Current)....

HOW TO: Locate a Specified DataRow by Using the Find Method of DataRowCollection in Visual Basic .NET     
Total Hits: 105  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Find method queries the primary key column of the DataTable, and locates the record that exactly matches the value that is passed in the search criteria. If the DataTable does not have a primary key, a MissingPrimaryKeyException is raised. The Find method has the following limitations:
• The Find method is not case sensitive.
• You cannot use Wildcard characters in the Find method. For example, when you use the following code, you may not find all the rows starting with Ch. Instead, yo...

How to use Data Link files with the OleDbConnection object in Visual Basic .NET     
Total Hits: 47  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to use an OLE DB Universal Data Link (.udl) file to specify the connection string that an ADO.NET OleDbConnection object uses to establish a database connection. OLE DB Universal Data Link (.udl) files provide a convenient way to create and verify an ActiveX Data Objects (ADO) connection string that is used to connect to an OLE DB data source. The connection string information is persisted in a specific format to a file with the .udl extension. You can reference a ....

How to make a DLL with VB.NET Standard Edition     
Total Hits: 124  |  Today: 0Author: George Poth      Rating:  
Read Reviews | Write Review |  Your Rating: 

When you ask in forums which edition of Microsoft Visual Basic .NET you should buy, most experienced programmers will tell you to go for anything but the standard edition. Why? Well, they say that you can't make .dll's and all the good pro stuff with the standard edition. I got news for you: you can make your .dll's with the standard edition. In fact, you can use the Class Library, Windows Control Library, Web Control Library, yep, and even Windows Service....

How to marshal an object to a remote server by reference by using Visual Basic 2005 or Visual Basic .NET     
Total Hits: 88  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to marshal an object by reference to a remote server. When you marshal an object by reference, the runtime creates a transparent proxy so that the server can make calls back to the object on the client. The only thing that is sent to the server is the proxy. The proxy marshals the call backs to the client. This article is broken into three parts: The server object, the server application, and the client application....

How To Use Automation to Create Office Command Bars and Controls with Visual Basic .NET     
Total Hits: 115  |  Today: 0Author: Microsoft      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....

Using Microsoft Interoperability Libraries     
Total Hits: 100  |  Today: 0Author: MuhammadAdeel.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is for programmers who have been programming using different languages for many years and now want to develop their applications using Microsoft .NET without rewriting their existing code logic. In this article, I have explained how a C++ (unmanaged) class can be reused in Microsoft .NET without any modifications....

Navigate the .NET Framework and Your Projects with "My"     
Total Hits: 660  |  Today: 0Author: Microsoft      Rating:  
Read Reviews | Write Review |  Your Rating: 

I set out to write this article about Visual Basic® 2005, but that left too many things to choose from. I could wander through the entire feature list, giving you a bit of information on cool IDE features like Edit and Continue, IntelliSense® Code Snippets, or the Exception Assistant; skim over the advanced language enhancements like generics, partial classes, and unsigned types; and barely touch on all the cool Microsoft® .NET Framework enhancements around Windows® Forms, data binding, ClickOnc...

FP2000: How to Invoke a New FrontPage Window Using Visual Basic for Applications     
Total Hits: 222  |  Today: 0Author: Microsoft      Rating:  
Read Reviews | Write Review |  Your Rating: 

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will no...

Writing Your Own GPS Applications: Part 2 - Introduction     
Total Hits: 405  |  Today: 0Author: Jon Person      Rating:  
Read Reviews | Write Review |  Your Rating: 

In part one of this article, I described how to write an interpreter for raw GPS NMEA data. The article included source code in VB.NET which harnessed the power of GPS satellites to determine the current location, synchronize the computer clock to atomic time, and point to a satellite on a cloudy day. The interpreter also works with hand-held devices and supports international developers. Yet, the interpreter was really not suitable for commercial use because it did not monitor precision. Withou...

HOW TO: Provide File Drag-and-Drop Functionality in a Visual Basic .NET Application      
Total Hits: 1622  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

The step-by-step procedure in this article demonstrates how to provide file drag-and-drop functionality in a Visual Basic .NET application. A ListBox control is used as the destination of the file drag-and-drop procedure.
...

HOW TO: Return a Strongly-Typed Array from the ToArray(type) Method by Using Visual Basic .NET     
Total Hits: 520  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes how to use Visual Basic .NET to return a strongly-typed array from the ToArray(type) method. This article applies to Visual Basic .NET if you set Option Strict On. If you set Option Strict Off, Visual Basic allows the implicit cast that is described in the article....

HOW TO: Create a Custom ASP.NET Configuration Section Handler in Visual Basic .NET (Q318457)      
Total Hits: 488  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes how to use Visual Basic .NET to create a custom configuration section handler for ASP.NET....

HOW TO: Create a Remote Server by Using Visual Basic .NET (Q300951)     
Total Hits: 412  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article illustrates how to create a simple, remote server that another application can access. The application that accesses this server can be located on the same computer, on a different computer, or on a different network. The remote server is broken into two parts: the server object and the server application. The server object is the object with which the client communicates, and the server application is used to register the server object with the Remoting runtime....

HOW TO: Use the DialogResult Property in Visual Basic .NET (Q315711)      
Total Hits: 523  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to use the DialogResult property in Windows Forms. You can use the DialogResult property to create dialog boxes in Windows applications.

...

HOW TO: Automate Internet Explorer to POST Form Data (Q311293)      
Total Hits: 1299  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

An automation controller, such as Microsoft Visual Basic, can automate Microsoft Internet Explorer to send data by using the POST method to an HTTP server (such as Microsoft Internet Information Services [IIS]). This article explains how to automate Internet Explorer to perform a POST of form data from a Visual Basic .NET application. Although the examples illustrate automation of the whole Internet Explorer application, the same techniques can be applied to the Web Browser ActiveX control when ...

HOW TO: Use the Visual Basic Upgrade Wizard (Q317885)      
Total Hits: 1680  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This step-by-step article explains how to create a simple Visual Basic 6.0 application, and then upgrade the application to Visual Basic .NET by using the Visual Basic Upgrade Wizard in Visual Studio .NET.
...

HOW TO: Compute and Compare Hash Values Using Visual Basic .NET (Q301053 )     
Total Hits: 945  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

The System.Security.Cryptography classes in the Microsoft .NET Framework make it easy to compute a hash value for your source data. This article shows how to obtain a hash value and how to compare two hash values to check whether they are identical....

HOW TO: Connect to a Database and Run a Command Using VB .NET - Q301075     
Total Hits: 1377  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes how to use ActiveX Data Objects (ADO) .NET to connect to a database and run a command (such as UPDATE, INSERT and DELETE) by using a Visual Basic .NET console application....

Q304654 - Programmatically Compile Code Using the Visual Basic .NET Compiler     
Total Hits: 669  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

The .NET Framework exposes classes that allow you to programmatically access the Visual Basic .NET language compiler. This might also be useful if you want to write your own code-compiling utilities. This article provides sample code that allows you to compile code from a text source. The application allows you to either just build the executable or build the executable and run it. Any errors that occur during the compilation process are displayed on the form....



Disclaimer - Privacy
© 2002-2012 DevASP.net