Attempting to learn good ol' MFC and ran into a stumbling block that I cannot seem to get past. How does one create events from an activex "class"??

I purchased a ACTIVEX control......SaxComm. Anyway, the documentation for it just plain sucks. In the IDE, I added the registered control to the project. This added a few of the control's classes to the project. I then added a member variable to the project's dialog class:

protected:
CSaxComm m_test;

Next, in initdialog, I initialized the control:

m_test.Create("SaxComm", NULL, CRect(0,0,0,0), this, NULL);

Now, here is the problem. Without visually placing the control on the dialog, how can I create a few events that the control supprts?

Thanks!
Phil