Guest User

Untitled

a guest
Jun 19th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Private Sub tyAI_Open(ByRef Cancel As Boolean) Handles tyAI.Open
  2. Cancel = True
  3. End Sub
  4.  
  5. private void mcAI_Open(out bool Cancel)
  6. {
  7. Cancel = true;
  8. }
  9.  
  10. mcAI.Open +=
  11. new Microsoft.Office.Interop.Outlook.ItemEvents_10_OpenEventHandler(mcAI_Open);
  12.  
  13. private void mcAI_Open(ref bool Cancel)
  14. {
  15. Cancel = true;
  16. }
Add Comment
Please, Sign In to add comment