I have a C# COM object with two public methods.
SendMessage()SendMessage(int priority)
I am trying to call these methods from a VB6 project, but intellisense shows only the method without the priority. If I try entering a priority anyway I get a compile error, "Wrong number of arguments or invalid property assignment".
Am I just doing something wrong, or do I need to change the C# dll?