|
|
|
|
|
| | Total Hits: 7 | Today: 0 | Author: Microsoft Corporation | 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.... |
| | Total Hits: 143 | Today: 0 | Author: Raja.Lakshman | 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.... |
| | Total Hits: 39 | Today: 0 | Author: Microsoft Corporation | 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.... |
| | Total Hits: 104 | Today: 0 | Author: VBDT | 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.... |
| | Total Hits: 164 | Today: 0 | Author: Paul Nichols | 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... |
| | Total Hits: 189 | Today: 0 | Author: Ted Pattison | 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 ... |
| | Total Hits: 113 | Today: 0 | Author: Mohammad Mahdi Ramezanpour | Rating:  |
| |  This is an open source SQL helper that help you make your web/windows application very easy like never before.... |
| | Total Hits: 201 | Today: 0 | Author: Jason Fisher | 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... |
| | Total Hits: 1182 | Today: 0 | Author: Magic Open Source. | 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.... |
| | Total Hits: 4635 | Today: 0 | Author: DevASP | 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.... |
| | Total Hits: 192 | Today: 0 | | 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... |
| | Total Hits: 397 | Today: 0 | Author: Intelligent Solutions Inc | 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.... |
| | Total Hits: 319 | Today: 0 | Author: Noa DeLorme | 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 ... |
| | Total Hits: 150 | Today: 0 | | 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.... |
| | Total Hits: 287 | Today: 0 | Author: Ted Pattison | 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 ... |
| | Total Hits: 276 | Today: 0 | Author: Budi Kurniawan and Ted Neward | 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.... |
| | Total Hits: 593 | Today: 0 | Author: MSDN | Rating:  |
| |  This article explains how to use base classes to reduce code forking with managed providers.... |
| | Total Hits: 1238 | Today: 0 | | 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.... |
| | Total Hits: 697 | Today: 0 | | 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. ... |
| | Total Hits: 13 | Today: 0 | Author: George B Gilbert | 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.... |
|
|
|
|
|
|
|
|
|
|
|
|
|