C# Control Panel applet

S

Stuart Roberts

I wish to implement a control panel applet for my application, accessed from
the standard windows control panel. Is they a simple way of ding this for a
C# project? Am I right in thinking that i just need a dll file (renamed to
cpl?) with some sort of standard interface?


--
Regards,

Stu.

If you let idiots piss you off, you will go
around pissed off the rest of your life.

Never argue with idiots because they will
bring it down to their level and beat you
with experience.
 
G

Grant Richins [MS]

Yes, you are correct. However the 'interface' is really just a bunch of
specifically named functions exported from the DLL. C# (and VB.NET) do not
allow you to export functions from a DLL. You would need to use the managed
C++ extensions to export the native functions and then call your C# code.
 

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

Top