Softwares to create an activeX coded in C#

  • Thread starter Thread starter Fab
  • Start date Start date
F

Fab

Hi,

I have never created an activeX. I have to code one in C#, which tools/
softwares do I need ?
Thanks,
Fab
 
Hello Fab,

http://www.google.com/search?q=C#+activex

btw, your can embed the user control the same way as activeX http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=187


---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

F> Hi,
F>
F> I have never created an activeX. I have to code one in C#, which
F> tools/
F> softwares do I need ?
F> Thanks,
F> Fab
 
It should be noted that exporting Active X controls from .NET is NOT
supported, and probably not a good idea.

If the requirement is to develop an Active X control, then you should do
it in an unmanged environment, like C++, or VB, or at least, use those
technologies as the entry point (to implement all the interfaces required
for ActiveX controls) and interop with .NET.

Hope this helps.
 
I'd have to re-iterate (from some personal experience) that Nicholas is
right on this one.

I had to abort any dotNet "activeX controls" ( or "embedded controls") and
switch back to old school vb6 for this little activex I needed.

Going back to non OO was ... youch, hard.

But as he pointed out c++ is an option.

I didn't try the piggy back on VB6 to some .net code (interop) so maybe you
could experiment with that one.

...


Nicholas Paldino said:
It should be noted that exporting Active X controls from .NET is NOT
supported, and probably not a good idea.

If the requirement is to develop an Active X control, then you should do
it in an unmanged environment, like C++, or VB, or at least, use those
technologies as the entry point (to implement all the interfaces required
for ActiveX controls) and interop with .NET.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Michael Nemtsev said:
Hello Fab,

http://www.google.com/search?q=C#+activex

btw, your can embed the user control the same way as activeX
http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=187


---
WBR, Michael Nemtsev [.NET/C# MVP]. My blog:
http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

F> Hi,
F> F> I have never created an activeX. I have to code one in C#, which
F> tools/
F> softwares do I need ?
F> Thanks,
F> Fab
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top