C++ API Launch the New memo form

Is there anyway I can launch a new memo form programatically using the C++ API. Note that I do not wish to send a new email, but I’d like the user to see the New Memo Window.

Mohan

Subject: C++ API is strictly backend, but here’s what you can do …

C++ API is for backend purposes, and you can’t directly tell the API to interact with the Notes UI. But, if tyour API solution is running in a separate thread, you can for example launch the new memo form with a mailto://-URL or launch the NOTES.EXE with a mailto:// URL like this:

C:\Program Files\Lotus\Notes\Notes.exe mailto:you@something.com

Bob

Subject: RE: C++ API is strictly backend, but here’s what you can do …

Bob:

Thanks for you help! That tip was really useful.

Mohan