Help with Extension Manager

Hi All,

I’m trying

  • to build a DLL that does some database operations from the client machine. But the user was prompted for password every time.

Then, to improve on this I decided to EMRegister on EM_GETPASSWORD event before the password prompt, i.e - EM_REG_BEFORE.

I have followed the following steps and I’m stuck at the very first step.

  • Adding MyEntryPoint function, which is exported from the DLL. Within, MyEntryPoint EMGetRecursionId is being called.

  • build dll, copy it to notes installation directory

  • add line “EXTMGR_ADDINS=NSAMPLEEXTMGR.dll” to my notes.ini

  • When I run my program, the control never seems to hit MyEntryPoint() function.

Can anyone please help me out with this?

My other question,

  • I also tried to do EM related function calls from my DLLMain() rather than MyEntryPoint(). This resulted in some sort of exception.

~raghav