C/C++
c_com.txt
Associated article: C#, COM Objects, & Interop Services
Tags: .NET C/C++
Published source code accompanying the article by Shehrzad Qureshi in which he implements an ActiveX control in both C++ and C#.
C#, COM Objects, & Interop Services
by Shehrzad Qureshi
Listing One
'Declaration of the ActiveX control
Dim CppControl As Cpp_ActiveX.CSimpleActiveX
Private Sub btnAdd_Click()
' grab data from input text boxes
Dim a, b As Integer
a = CDbl(...


