Hi AxelTB
Seeing your problem, I think that:
Maybe you've not indicated correctly what is the ProgID of you PlugIn to BotDK! I mean, in the registry (I've tried to set a wrong ProgID, and when you do it, in fact, the about box and plugin box make the program crash)
If you want to know what is the progID, you can use COMExplorer (VC++ add .1 at the end of the progID : for ex. YourBot.Bot.1)
Or maybe the problem is in VC++ (I noted that VC++, in the header file YourAtlObjetName.h, return by doing
return E_NOTIMPL;
for example:
code:
public:
STDMETHOD(Initialize)(IPluginHost * objPluginHost)
{
return E_NOTIMPL;
}
replace it by any ohter return (ie. return TRUE;, or return 0; ) and, the "crash" will disappear.....
(I'm not sure about that but I think I had the same pb, can't remember!)
I thik it'll help you
(as for my problem, I still don't know how to solve it ^^)