Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

intellisence for C# COMserver

Status
Not open for further replies.

Stefan5627

Programmer
Jul 23, 2002
71
NL
Hi everyone,

I've written a COMserver in C# that i'm using in vfp9
Does anybody know how i can get vfp intellisence to work with it?

Stefan
 
Thanks for the reply Mike,

but that's not what i'm looking for.
When i do something like

Code:
local loword as word.application

then intellisence automaticly kicks in when i use loword

however when i do
Code:
local lotest as mycomserver.myclass
[/]
intellisence does not work on lotest
 
If mycomserver.myclass would be registered it should work, but it also depends on typlib information being present. COM enabled assemblies might differ from normal COM classes in that respect, as they also arent registered with regsvr32 but with regasm.

Bye, Olaf.
 
mycomserver.myclass is registered (I wrote an installer in the same solution)
However i am a novice to c# so i don't know if i need to add something so it can be used by vfp intellisence.

Stefan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top