I have a VB6 COM dll that I've wrapped in COM+ (component services). For the life of me I can't figure out how to get the reference to the service imported/working in C#. Google isn't helping me at all. Nothing shows up in the add a reference dialog box that is even close to the name of my service. Does anyone have any code/tips for how to do this? Thanks.
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in COM+
- ImageResizer as COM application - permissions issue
- Failed to generate type library for iAnywhere.Data.SQLAnywhere
- Invoke COM object in a "PostMessage" manner
- BizTalk and COM+
- VB6 COM+ Out of Memory Issue
- Serviced Component interface not showing up
- COM+ activation on a remote server with partitions in C#
- using asp.net dll in classic asp
- How to change DCOM config identity programmatically
- Why is my COM object not displaying methods in Component Services?
- MDAC ADODB in Win 2012 R2
- Is COM+ component exposing ADODB supported on 2012 64bit windows server?
- Powerbuilder COM+ generated DLL cannot be invoked from C++ ( Visual Studio 2012 )
- Problem in VB6 COM+ application reinstall
- Determining CPU and RAM usage in a Silverlight 4 WIndows Sidebar Gadget
Related Questions in COMPONENT-SERVICES
- Install package for COM+
- How to ensure COM+ Application Pools are always running
- Problem finding office DCOM in Component Services in Windows 7
- RegSvcs.exe registering the same dll twice
- Debugging a VB6 ActiveX DLL called via VBScript in a Classic ASP Application
- Com+ components registration status by passing machine name using c#
- log4net - errors when is called as a Component Service
- Component Service and C#
- SSIS Remote connection access
- The module ".dll" was loaded but the entry-point was not found
- How should I go about moving Component Services to a new server?
- Difference between "traditional" COM and COM+ (in Component Services)
- log4net - Tracing problems with logging configuration
- Automation Error when calling COM+ component on Windows 8.1
- Programmatically read MS DTC Transaction Component Services Timeout in C#
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you've registered the dll it should show up in the COM tab, you could also try and browse right to the dll or tlb, and add the reference that way.
Edit
Nope it won't, it will get redirected to the service. It's the same as if you created the object using CreateObject("MyCom.MyClass") in vb, the SCM (Ihope thats what it is called been a long time since I dealt with COM+) will activiate the component within the COM+ service if its a service application or within your process if its a library.