Created
January 22, 2015 09:28
-
-
Save vuchl/5cac722c55686186ad49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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