1

Are there limitations to using SpicIE (with C#) to develop an IE extension? If an IE extension is developed in SpicIE, and then later needs to be developed as a BHO (C++?), will it have to be rebuilt from scratch?

Kyle Cureau
  • 19,028
  • 23
  • 75
  • 104

1 Answers1

1

I don't think you will be limited if you use this, as it's mostly a thin layer between IE and the extension that uses it. Even if something's missing, the CLR has powerful interop mechanisms, and last, you have SpicIE source.

If you ever need to port it over to a C++ project, yes, you will have to rewrite it, but the logic should be very similar, as the interfaces you will use are mostly IE's COM interfaces (IHtmlxxx and all that jazz: http://msdn.microsoft.com/en-us/library/aa741322(v=VS.85).aspx). This is the same whether you're working in C# or C++.

PS: since the source is provided, I would definitely try to merge SpicIE code with my own code, and build the whole in a single assembly, as this would ease deployment.

Simon Mourier
  • 132,049
  • 21
  • 248
  • 298
  • 1
    Salut @Simon, thanks for the great answer! On limitations, any reason the SpicIE site says "SpicIE is a valuable tool for prototyping and testing...it is not recommended for use with released software." You definitely answered my question already...just a quick follow-up to see why they say that. – Kyle Cureau Mar 30 '11 at 06:13