C# Control Panel applet

  • Thread starter Thread starter Stuart Roberts
  • Start date Start date
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.
 
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.
 
Back
Top