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 > Class Libraries


Search:
What's New - What's Hot
Introduction to the .NET Framework Class Library in Visual Studio  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

A key feature of the .NET Framework is the base class library. For more information about the common language runtime, the class library, the common language specification (CLS), and other features of the .NET Framework, see Inside the .NET Framework....

Enterprise Library wrapper class to implement run-time dynamic connection strings without using config file     
Total Hits: 143  |  Today: 0Author: Raja.Lakshman      Rating:  
Read Reviews | Write Review |  Your Rating: 

Enterprise Library wrapper class to implement run-time dynamic connection strings without using config file. Enterprise Library out of the box recommends storing connection strings and provider information in a config file. Our applications generate connections string dynamically during run-time. So I developed this enterprise library wrapper class to allow us to use the enterprise library with run-time dynamic connection strings....

How New and Finalize Methods Work in a Class Hierarchy     
Total Hits: 39  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Whenever an instance of a class is created, the common language runtime (CLR) attempts to execute a procedure named New, if it exists in that object. New is a type of procedure called a constructor that is used to initialize new objects before any other code in an object executes. A New constructor can be used to open files, connect to databases, initialize variables, and take care of any other tasks that need to be done before an object can be used....

HotkeyManager Class     
Total Hits: 104  |  Today: 0Author: VBDT      Rating:  
Read Reviews | Write Review |  Your Rating: 

The HotkeyManager Class makes it easy to set global hotkeys for applications. It is a wrapper class that raises HotkeyPressed event whenever a registered hotkey by the HotkeyManager class is pressed. The class keeps a collection of the registered hotkeys (in Hotkey data type) and it is available to the developer through the Hotkeys property of the HotkeyMananger object. The HotkeyManager can be used to register, unregister or replace (registered by the HotkeyManager) hotkeys....

XML Documentation and IntelliSence for Class Libraries in VB.NET     
Total Hits: 164  |  Today: 0Author: Paul Nichols      Rating:  
Read Reviews | Write Review |  Your Rating: 

As a VB developer one thing that I've been wondering how to achieve is providing my assemblies with a more professional look by adding summaries, descriptions, help and remarks to the classes, members and parameters. This help is often seen when using commercial assemblies both in the Object Browser and programmatically as you hover over a member shown in your IntelliSence list. Very regularly we must all think, OK what exactly does this parameter mean and even more importantly what does the met...

Programming Events of the Framework Class Libraries     
Total Hits: 189  |  Today: 0Author: Ted Pattison      Rating:  
Read Reviews | Write Review |  Your Rating: 

This month's installment represents the final column in a series of three focusing on programming events. In the previous two columns, I showed you how to define and raise events (see Basic Instincts: Programming with Events Using .NET and Basic Instincts: Static Event Binding Using WithEvents). I also explained how to wire up event handlers using both dynamic and static event binding. This month I am going to conclude my coverage of events by showing some practical examples of handling some of ...

Ramezanpour.Data.Helper Light Edition     
Total Hits: 113  |  Today: 0Author: Mohammad Mahdi Ramezanpour      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is an open source SQL helper that help you make your web/windows application very easy like never before....

Visual Basic: Inspect COM Components Using the TypeLib Information Object Library     
Total Hits: 201  |  Today: 0Author: Jason Fisher      Rating:  
Read Reviews | Write Review |  Your Rating: 

The built-in Object Browser in Visual Basic, like other component browsers such as OLE View and XRay, is one of the more useful tools. But an even better tool would be customizable. You can build your own type library browser using the TypeLib Information Object Library (TLI), a set of COM objects designed to allow programmers to browse type libraries programmatically. This article explains type libraries and the TLI object model, and shows how to use the collections to get information about obj...

Build Your Own Free Bulk SMS Gateway     
Total Hits: 1182  |  Today: 0Author: Magic Open Source.      Rating:  
Read Reviews | Write Review |  Your Rating: 

Short Message Service (SMS) is becoming a popular way of marketing nowadays. Normally in order to send bulk SMS, we need to rely on the telco operators or any third party service providers to provide the bulk SMS sending facility. In this article, I am going to show you how to make use of your mobile phone or a GSM modem attached to your computer to send bulk SMS using the open source atSMS library and a open source bulk SMS gateway that I have developed....

How to Make DLL Using Visual Basic.Net (Part 2)     
Total Hits: 4635  |  Today: 0Author: DevASP      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a Advance topic but if beginner study this they can do this easily. In this simple article you will learn to make DLL (Dynamic Link Library) in VB.Net application....

Network Sockets     
Total Hits: 192  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This will be an article on sending and recieving data over networks, to and from a client or server. the article will be based off of a sockets library that i have written using the system.net.sockets.socket class...

SmartSQL Class -- Automates Generation of SQL Statements (VB.NET Version)     
Total Hits: 397  |  Today: 0Author: Intelligent Solutions Inc      Rating:  
Read Reviews | Write Review |  Your Rating: 

The SmartSQL class helps ease the process of generating and tracking complex SQL statements. Using this class, you can do things like create join statements more easily, use an array or collection as the fields list (or values list for INSERT and UPDATE queries), and change parts of the SQL statement by setting properties, as opposed to managing a long string. Complete documentation is included....

Sorting a ListView with VB.NET     
Total Hits: 319  |  Today: 0Author: Noa DeLorme      Rating:  
Read Reviews | Write Review |  Your Rating: 

Every so often, while happily coding along in .NET, I’ll run into an object with a few methods that just don’t make sense. The .NET ListView object was just one of those. In VB6 it was a piece of cake to sort by columns in a ListView. All you did was pass it the index of the column you wanted to sort by. Now, in .NET, things have gotten a little bit more complicated. The gist of the new method is this: you must create your own custom class that implements the IComparable interface and overrides ...

Converting a VB.Net date to RFC822 format for RSS feeds     
Total Hits: 150  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Simply use Jim's code in his comment below. So easy!.I couldn't find anything that could easily convert a date into the RFC822 format needed for RSS 2.0. Add this class to your project and then simply call it....

Programming Events of the Framework Class Libraries     
Total Hits: 287  |  Today: 0Author: Ted Pattison      Rating:  
Read Reviews | Write Review |  Your Rating: 

This month's installment represents the final column in a series of three focusing on programming events. In the previous two columns, I showed you how to define and raise events (see Basic Instincts: Programming with Events Using .NET and Basic Instincts: Static Event Binding Using WithEvents). I also explained how to wire up event handlers using both dynamic and static event binding. This month I am going to conclude my coverage of events by showing some practical examples of handling some of ...

An Introduction to the .NET FCL, Part 4     
Total Hits: 276  |  Today: 0Author: Budi Kurniawan and Ted Neward      Rating:  
Read Reviews | Write Review |  Your Rating: 

Once you've made a namespace accessible to your code, you can access any of the types it contains. In this section, we'll survey the types that a .NET namespace can contain. In VB.NET, classes are reference types; that is, when you create an instance of a class in code, you work with a pointer (or reference) to the object rather than with the object itself. This is similar to previous versions of Visual Basic....

HOW TO: Use Base Classes to Reduce Code Forking with Managed Providers in Visual Basic .NET (Q308046)      
Total Hits: 593  |  Today: 0Author: MSDN      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article explains how to use base classes to reduce code forking with managed providers....

HOW TO: Work with the HashTable Collection in Visual Basic .NET     
Total Hits: 1238  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article provides information about the HashTable collection. Because hashing eliminates the need for costly searching of data to retrieve the data, you can use hashing to efficiently retrieve data. Hashing uses the value of the key itself to locate of the data....

HOW TO: Create an Indexer Property in Visual Basic .NET      
Total Hits: 697  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes how to create an Indexer property in Visual Basic .NET by using the default property attribute. A Microsoft C# indexer appears to a Visual Basic programmer as a default Item property, and a Visual Basic default property appears to a Microsoft C# programmer as an indexer. Indexers permit instances of a class to be indexed in the same way as arrays.
...

VB.NET Class Library: DBIO SQL  Version: 0.00     Price: $0.00  
Total Hits: 13  |  Today: 0Author: George B Gilbert      Rating:  
Read Reviews | Write Review |  Your Rating: 

The DBIO SQL class library (tgs_dbio_sql.dll) encapsulates one class named C_DBIO_SQL. This class is a plug-in I/O layer for SQL databases which includes the automatic generation of SQL statements....


1  2  3  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net