NCS Logo - Click for home page Northstar Developer Center
Platforms
All Platforms
.NET Framework (1.x - 4.x)
Active Server Pages
ASP.NET
C#
SQL Server
VB.NET
Visual Basic

Keywords
ASP.NET Authentication
ASP.NET Data Access
ASP.NET Page Events
.NET Data Types
.NET E-mail
.NET Functions
.NET System.IO
.NET System.Net
.NET System.Net.Sockets
Active Data Objects
ASP Architecture
ASP Black Belt
ASP Built-in Functions
ASP Built-in Objects
ASP Debugging
ASP Performance
ASP Security
ASP Syntax
ASP.NET Controls
ASP.NET Features
ASP.NET Master Pages
ASP.NET Security
Certifications
COM, DCOM, COM+
Data Access
E-Mail
Errors
HTML Tips
IIS
Object-Oriented Programming
SQL
Uncategorized ASP Tips
VB API Programming
VB Forms
VB Syntax

Book Support
Visual Basic 6 Bible
ASP Bible
ASP Weekend Crash Course
ASP.NET At Work
Creating Web Services

All articles with keyword "COM DCOM"

A Quick Way to Load Data

For COM objects that pull their data from a database, here's a quick way to load up the object with all of its fields. This code makes the assumption that each ...

Click for more...

A Quick Way to Save Data

Here's a subroutine that uses ADO within a COM component to save data from the object back to a database recordset. This code makes the assumption that there is...

Click for more...

Accessing Client Machine Information

This question was raised by several readers: how can I get information about a user's login ID or machine name? The answer is that ASP, by itself, can't get it...

Click for more...

CreateObject Failed

In previous tips, we talked about problems dealing with CreateObject and how sometimes this error is due to the fact that the DLL is not registered correctly...

Click for more...

Introduction to COM Component Programming

One of the most feared topics in Visual Basic development is when more experienced developers start talking about COM component development. Any time the ter...

Click for more...

Using COM Objects from VB

A common question I get is about using COM objects or components within Visual Basic. Any object you use within Visual Basic (leaving out DCOM and COM+ for now)...

Click for more...

Using Variants in COM Components

If you’re building COM components for your web applications, remember that VBScript only knows one data type: Variant. This has two implications for COM compone...

Click for more...