Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, July 20, 2008

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 > Miscellaneous
Search:
What's New - What's Hot


How to marshal an object to a remote server by reference by using Visual Basic 2005 or Visual Basic .NET        
Total Hits: 7  |  Today: 0 Author: 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 Create an ASP.NET HTTP Handler by Using Visual C# .NET        
Total Hits: 9  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article demonstrates how to use Visual C# .NET to create a simple, custom HTTP handler. This article demonstrates how to create, deploy, and configure the handler....

How to make a DLL with VB.NET Standard Edition        
Total Hits: 13  |  Today: 0 Author: 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....

Real Time SynTax Colorizing        
Total Hits: 10  |  Today: 0 Author: Aaron Eldreth       Rating:  
Read Reviews | Write Review |   Your Rating: 

There seems to be three ways to do real time syntax coloring. Good, fast, and flicker-free. Pick any two. Matthew Hazlett did an article that covers "good and flicker-free", so I thought some people might find it useful to have simply "good and fast"....

HOW TO: Use the Visual Basic Upgrade Wizard (Q317885)        
Total Hits: 1149  |  Today: 1       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: Connect to a Database and Run a Command Using VB .NET - Q301075        
Total Hits: 1276  |  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....

How To Copy DataRows Between DataTables by Using Visual Basic .NET        
Total Hits: 56  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

Before you use the ImportRow method, you must ensure that the target table has the identical structure as the source table. This sample uses the Clone method of DataTable class to copy the structure of the DataTable, including all DataTable schemas, relations, and constraints. This sample uses the Products table that is included with the Microsoft SQL Server Northwind database. The first five rows are copied from the Products table to another table that is created in memory....

HOW TO: Locate a Specified DataRow by Using the Find Method of DataRowCollection in Visual Basic .NET        
Total Hits: 21  |  Today: 0 Author: 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...

A*****'s tracker cleaner        
Total Hits: 18  |  Today: 0 Author: A*****       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is on tracks cleaning, (cleaning files/folders and registry entries that can be used to get information about you and your computer) and introduces the use of Registry keys, IO(deleting files/folders), to clean basic tracks from your computer....

Navigate the .NET Framework and Your Projects with "My"        
Total Hits: 293  |  Today: 0 Author: 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...

Visual Basic for Applications Overview        
Total Hits: 194  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft Visual Basic for Applications (VBA) is a powerful development technology for rapidly customizing rich-client desktop packaged applications and integrating them with existing data and systems. VBA offers a sophisticated set of programming tools based on the Microsoft Visual Basic development system, the world's most popular rapid application development system, which developers can use to harness the power of packaged applications. VBA enables customers to buy off-the-shelf software and...

Writing Your Own GPS Applications: Part 2 - Introduction        
Total Hits: 245  |  Today: 0 Author: 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: 1489  |  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: Create a Remote Server by Using Visual Basic .NET (Q300951)        
Total Hits: 304  |  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: 385  |  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: 1082  |  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: Compute and Compare Hash Values Using Visual Basic .NET (Q301053 )        
Total Hits: 831  |  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 Use Automation to Create Office Command Bars and Controls with Visual Basic .NET        
Total Hits: 9  |  Today: 0 Author: 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 Nhibernate in VB.NET        
Total Hits: 86  |  Today: 0 Author: S.SRIVATHSAN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This Article is about how to implement Nhibernate in VB.NET...

MS Access: Pass Variable Values From One Form to Another        
Total Hits: 65  |  Today: 0 Author: Vishal Monpara       Rating:  
Read Reviews | Write Review |   Your Rating: 

A few days back, I was creating a small prototype for my project using MS Access. I was required to pass values to other forms. I searched everywhere to find out a way to pass values but couldn't succeed. The only hint I got was using Me.OpenArgs argument variable it is possible to pass values across forms....


1  2  Next >> 

DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net