Recent content by nitwalke@gmail.com

  1. N

    Modal form is not properly working on inspector

    I didn't get IOLKWindow class. Can you give code?
  2. N

    Modal form is not properly working on inspector

    Here is code. //form object is windows form OutlookWindow32 inspectorIWin32Window = new OutlookWindow32((Object)_mailItem.GetInspector, true); form.ShowDialog(inspectorIWin32Window ); // above code makes inspector as modal.it solves my problem //If user clicks on send button of...
  3. N

    Modal form is not properly working on inspector

    Please see following link to get answer http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/10cb8068-55ad-41b0-99b9-778c02dfad14
  4. N

    Modal form is not properly working on inspector

    It works for outlook2007.It also works for outlook2003 when mail format is 'Microsoft Office Word 2003 to Rich Text email Messages' but when we use mail format as 'Microsoft Office Word 2003 and edit e-mail messages.' it doesn't work. I have developed addin in C#. form is opened...
  5. N

    Modal form is not properly working on inspector

    Hi all, I have created an outlook addin and added toolbar on an inspector open event in inspector. When user click on a button on toolbar, new modal form gets opened on top of inspector . If user clicks on send button of inspector and closes the model form then send email event...
  6. N

    How to hide pstStore

    Hi all, my problem has resolved. I have created new instance of RDOsession and called LogOnPstStore - it has created new temporary profile and add add specified pstStore in it.This store is not visible in outlook. Thanks.
  7. N

    How to hide pstStore

    Thanks for reply, Hide it in Outlook.I have to create new folder in this store and add some mail into this folder, do some processing on the mail.So I have created new store. Everything is working using new store but only this store can see by end user. How can I hide new store...
  8. N

    How to hide pstStore

    Hi all, I have programmatically created new pstStore. This pstStore is visible to end user. How can hide this pstStore. Addin is on Outlook 2003 in C#. _pstStore = oSession.Stores.AddPSTStore(....,...,...); Thanks, Regards, Nitin
  9. N

    How to create hidden rule in outlook 2007

    Thanks for reply, How can we use COM addin to replace the rule?Can I get some example? or more explanation. I have created COM addin and used rule object and rule can seen in rule wizard. Outlook.MAPIFolder inbox=...
  10. N

    How to create hidden rule in outlook 2007

    Hi all, I am developing outlook plug-in for outlook 2007. I have created programmatic- ally rule and it works fine.This rule can see in 'Rules and Alert' window.Can user hide this rule? or how can create hidden rule and set it's execution order first? Thanks in advance.
  11. N

    Drag and drop attachment in outlook addin

    I will give details about my project. In ThisAddIn class.. [STAThread] private void NewButtonClick() { Form frm = new Form(); frm.ShowDialog(); } and in form class. I have created textbox and set AllowDrop=True; it gives following error...
  12. N

    Drag and drop attachment in outlook addin

    Thanks Ken for replay. I am not interested to use thread. I want to know, Can DragDrop registration will possible without using thread.I got following error while registering DragDrop event for text box. "System.InvalidOperationException: DragDrop registration did not succeed. --->...
  13. N

    Drag and drop attachment in outlook addin

    Hi All, I have created outlook addin for outlook 2003 in vsto-2008. When I have tried to allow property 'allowDrag' to textbox it gives runtime exception "dragdrop registration did not succeed". I have searched on net, got suggestion to use threading. Thread t = new Thread(new...
Back
Top