Skip to content

Instantly share code, notes, and snippets.

@vuchl
Created January 22, 2015 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vuchl/5cac722c55686186ad49 to your computer and use it in GitHub Desktop.
Save vuchl/5cac722c55686186ad49 to your computer and use it in GitHub Desktop.
case ForwardMessageID.GWCOMMAND00:
MessageBox.Show( "GW.MESSAGE.MAIL eGW_CMDID_FORWARD", "Execute", MessageBoxButtons.OK);
//C3PO WIZARD Put execute command code here for GW.MESSAGE.MAIL eGW_CMDID_FORWARD
C3POTypeLibrary.IGWClientState6 myCL = (C3POTypeLibrary.IGWClientState6)ForwardMessageID.g_C3POManager.ClientState;
GroupwareTypeLibrary.Message m = (GroupwareTypeLibrary.Message)myCL.CommandMessage;
MessageBox.Show("ForwardMessageID: " + m.MessageID);
break;
// oder
case ForwardMessageID.GWCOMMAND00:
MessageBox.Show( "GW.MESSAGE.MAIL eGW_CMDID_FORWARD", "Execute", MessageBoxButtons.OK);
//C3PO WIZARD Put execute command code here for GW.MESSAGE.MAIL eGW_CMDID_FORWARD
C3POTypeLibrary.IGWClientState6 myCL = (C3POTypeLibrary.IGWClientState6)ForwardMessageID.g_C3POManager.ClientState;
GroupwareTypeLibrary.Mail m = (GroupwareTypeLibrary.Mail)myCL.CommandMessage;
MessageBox.Show("ForwardMessageID: " + m.MessageID);
break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment