Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> .NET -> COM Articles Adds this page to your personal favorites
  COM
.NET Interop for Visual FoxPro Applications
This article discusses in detail how to execute code dynamically by creating code and compiling it at runtime. This is a useful feature for extending applications with user extensions or for adding support for advanced templating. The article discusses the process of compiling code and utilizing the new assembly. Also provided are classes that simplify the process and an ASP like script parser that can be plugged into any application with a few lines of code.
Visits: 3988 Updated: 2005-10-27  Rating: (Not Rated)  More info & Ratings
.NET Interoperability: .NET <-> Win32
This article uses Delphi for .NET Preview to show how .NET managed code can interoperate with unmanaged Win32 code using the PInvoke and Inverse PInvoke mechanisms. In particular, it focuses on: - .NET applications using unmanaged Win32 APIs and entry points exported from your own DLLs - Win32 applications using managed methods exposed from managed .NET assemblies
Visits: 1520 Updated: 2002-12-6  Rating: (Not Rated)  More info & Ratings
Advertisment
.NET Interoperability: COM Interop
This article uses Delphi for .NET Preview to show how .NET managed code can interoperate with Win32 COM clients and servers using the COM Interop mechanism. In particular, it focuses on: - .NET client applications using unmanaged COM objects - COM client applications using managed .NET objects
Visits: 1217 Updated: 2002-12-6  Rating: (Not Rated)  More info & Ratings
Accessing .NET Components from COM Clients and COM components from .NET Clients
This article explains how to access a .NET component from a COM client and accessing COM.
Visits: 1409 Updated: 2001-6-26  Rating: (Not Rated)  More info & Ratings
Achieving Backward Compatibility with .NET Interop: Excel as Case Study
There is one way to make explicit reference to a particular version of an ActiveX COM component for .NET Interop. The example used here is to make automation of Microsoft Excel backward compatible. Visual Studio will not allow you to reference older versions if Excel 2003 is already installed on your machine--so your program will not work once deployed to other machines that may have prior versions. This article includes a method for building your own Interop DLL for deployment using a command line tool from the .NET SDK.
Visits: 300 Updated: 2005-10-10  Rating: (Not Rated)  More info & Ratings
An insight into code reusability and COM interoperability: Part 1
Code reusability is the art of using existing code to achieve better productivity and ease of maintenance. The concept of reusability is not new.
Visits: 736 Updated: 2001-9-5  Rating: (Not Rated)  More info & Ratings
COM and component creation in C#
This article is about the use of reflection package in Csharp. Through Reflection we can get Information.
Visits: 1785 Updated: 2001-7-12  Rating: (Not Rated)  More info & Ratings
COM Interoperability in .NET Part 1
In the first part of this series, Arun Ganesh introduces interoperability between the new .NET technologies, and how to use old Win32 API calls in your .NET applications.
Visits: 1200 Updated: 2002-5-6  Rating: (Not Rated)  More info & Ratings
COM Interoperability in .NET Part 2
This article elucidates how to build and install-managed code that will be used from COM applications. A classic COM server is activated using the Service Control Manager (SCM).
Visits: 925 Updated: 2002-5-6  Rating: (Not Rated)  More info & Ratings
Exposing Windows Forms Controls as ActiveX controls
This article describes how to build a Windows Forms control in C# and expose it as an ActiveX control.
Visits: 2736 Updated: 2001-7-23  Rating: 
Interface Component Interoperability
The fundamental concept behind both COM and DCOM is the interface. An interface is an agreement between a client and an object about how they will communicate with each other.
Visits: 736 Updated: 2001-9-5  Rating: (Not Rated)  More info & Ratings
Microsoft .NET/COM Migration and Interoperability
The interoperability features of the Microsoft .NET Framework will enable developers to continue using traditional Active Server Pages, Component Object Model applications, and Microsoft Win32 DLLs, making it easier to choose if and when to migrate existing managed code to .NET.
Visits: 207 Updated: 2003-12-15  Rating: (Not Rated)  More info & Ratings
Real Stories of .NET Interop: C#, VB.NET and VB6
This article attempts to provide a tutorial as well as help with the troubleshooting of your own interop issues. I will describe the issues with using libraries written in C# or VB.NET in your VB6 applications. The reason, this is an issue, is because there is a lot of new code available only in C# or VB.NET that access new functionality of the OS. Or it could simply be the case that there is already existing C# code that's not available as a COM library, that you want to use.
Visits: 7115 Updated: 2004-7-9  Rating: 
Understanding Classic COM Interoperability With .NET Applications
Ever wondered how all those COM components that you've have written through the years play along with the .NET runtime. If you are a diehard COM developer interested in knowing how Classic COM Components are positioned in the .NET world or how COM aware clients could consume .NET components, read on.
Visits: 829 Updated: 2001-6-15  Rating: (Not Rated)  More info & Ratings
Using Automation (ActiveX/COM) Objects in ASP.NET
Sometimes we are tempted to believe that .NET is a cure for all of our development problems and that every technique used in the pre .NET days should be sent to the recycle bin this moment. A technique which suffers greatly from this misunderstanding is ActiveX, also known as (OLE) automation or COM. The CreateObject function creates COM objects and is often used in classical ASP server side scripts to customize Web pages. It has not always led to the best coding practices, but it worked. The ASP.NET server side controls and the truly object oriented .NET Framework are a huge step forward. A lot of problems COM used to solve are now better in .NET, but that does not mean that COM no longer exists. Some of your existing COM classes work very well, why should you convert them to .NET? That's not what COM promised you! Relax, there are still a lot of things you can do with COM in ASP.NET. In this article I will show you some of the great COM support it has to offer.
Visits: 681 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Using COM+ Resource Dispenser in the .Net Application.
This article describes how to incorporate the resource dispenser into the .Net application using the C# language to build a poolable resource.
Visits: 623 Updated: 2001-9-28  Rating: (Not Rated)  More info & Ratings
Using Managed Components from Unmanaged Code
This article shows how to access .NET components from COM components.
Visits: 1141 Updated: 2001-6-7  Rating: (Not Rated)  More info & Ratings
Using P/Invoke to Access Win32 APIs
.NET provides access to COM components through its P/Invoke facility. P/Invoke allows developers to invoke native unmanaged methods from managed code. In this article, we will walk through an example of COM interoperability from within C#.
Visits: 767 Updated: 2003-12-18  Rating: (Not Rated)  More info & Ratings
Working with the COM+ admin objects under .NET/C#
An article that explores .NET interoperability with COM components.
Visits: 888 Updated: 2001-6-19  Rating: (Not Rated)  More info & Ratings
XP, Component Services and .NET
Learn about the changes introduced by COM+, new features included in Windows XP for COM+, and how to use COM+ services from your .NET programs.
Visits: 871 Updated: 2003-2-26  Rating: 


Found a broken link? Please report it to us.

  See also  
 Articles
   Windows Articles
    COM/DCOM/COM+
    Controls / Components
   ASP.NET Articles
    Components
 

Sponsored Links 
.Net Application Updating
One easy to use component adds safe and reliable updating features. Download today for a free trial.
Online Crash Analysis
Automatically capture customer crash data, no debugger required. Support for .NET, C++, OS X, Java.
.Net Localization Tool Sisulizer
Localize your .Net apps: ResX and assemblies. Database, XML & HTML Help localization. Try Sisulizer!
CSTSOFT Instrumentation .NET & ActiveX Components
A collection of 13 instrumentation .NET/ActiveX/VCL components including Gauge,Knob,LED,Trend etc.
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
DV Magazine is the premier monthly publication dedicated to the needs of digital video and web video professionals.
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by ASP.NET Konsult - Synchron Data.