![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
hello
I've VSTO Addin for Outlook 2007. I'm adding a dummy attachment in BeforeAttachment event & removing original attachment. But the attachment list still shows me original attachment along with dummy attachment. Besides this when I drag drop or insert attachment the cursor position changes. I also need to insert a link at current cursor position.so the cursor position should not change for proper link insertion. Below is the code I'm using - strMyTmpFilePath = IO.Path.Combine(strMyTmpFilePath, strMyTmpFileName) IO.File.AppendAllText(strMyTmpFilePath, "this is a dummy file") CurrentMailItem.Attachments.Add(strMyTmpFilePath) IO.File.Delete(strMyTmpFilePath) Cancel = True 'Code to add Link at cursor position Dim ObjSel As Object = CurrentInsp.WordEditor.Application.Selection With ObjSel Dim Rg As Object .MoveRight(Unit:=2, Count:=1) 'wdWord=2 Rg = .range .Hyperlinks.Add(Anchor:=Rg, Address:=strAttachmentURL _ , TextToDisplay:=strNewLink.ToString) .InsertAfter(" ") End With If Rg IsNot Nothing Then Marshal.FinalReleaseComObject(Rg) If ObjSel IsNot Nothing Then Marshal.FinalReleaseComObject(ObjSel) Thanks |
#2
|
|||
|
|||
![]()
Try saving the item after you add your new attachment and again after you
remove the old one. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "sd" wrote in message ... hello I've VSTO Addin for Outlook 2007. I'm adding a dummy attachment in BeforeAttachment event & removing original attachment. But the attachment list still shows me original attachment along with dummy attachment. Besides this when I drag drop or insert attachment the cursor position changes. I also need to insert a link at current cursor position.so the cursor position should not change for proper link insertion. Below is the code I'm using - strMyTmpFilePath = IO.Path.Combine(strMyTmpFilePath, strMyTmpFileName) IO.File.AppendAllText(strMyTmpFilePath, "this is a dummy file") CurrentMailItem.Attachments.Add(strMyTmpFilePath) IO.File.Delete(strMyTmpFilePath) Cancel = True 'Code to add Link at cursor position Dim ObjSel As Object = CurrentInsp.WordEditor.Application.Selection With ObjSel Dim Rg As Object .MoveRight(Unit:=2, Count:=1) 'wdWord=2 Rg = .range .Hyperlinks.Add(Anchor:=Rg, Address:=strAttachmentURL _ , TextToDisplay:=strNewLink.ToString) .InsertAfter(" ") End With If Rg IsNot Nothing Then Marshal.FinalReleaseComObject(Rg) If ObjSel IsNot Nothing Then Marshal.FinalReleaseComObject(ObjSel) Thanks |
#3
|
|||
|
|||
![]()
Thanks Ken
I saved item after new attachment addition & also after removing the old one.But no success.Attachment list not refreshed. Also I don't want to save item (if the user cancels send then I will have to remove this item from drafts).I reassigned the body format,that refreshes the attachment list.But in plain text mode link is not recognized (it is displayed as plain text) & cursor position again set to starting of message body . Is there any way so the link gets recognized & also cursor position doesn't change? If I don't add new attachment ,just remove the old one & add the link then there is no problem link is recognized & cursor position also not changed. |
#4
|
|||
|
|||
![]()
I don't know about forcing a refresh as well as not changing the cursor
position. However, that's not really an issue, since you can always get the cursor position first before it changes. That should help. See if faking out Outlook helps, something like item.Body = item.Body. But I think you're going to have to save. I usually use a flag in those cases, first I check the Saved property and then I flag my save if needed, then I handle the Write() event on the item and if I didn't fire that event by saving it's the user who did it (or auto-save). Then I can work out if I need to delete the item from Drafts if necessary. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "sd" wrote in message ... Thanks Ken I saved item after new attachment addition & also after removing the old one.But no success.Attachment list not refreshed. Also I don't want to save item (if the user cancels send then I will have to remove this item from drafts).I reassigned the body format,that refreshes the attachment list.But in plain text mode link is not recognized (it is displayed as plain text) & cursor position again set to starting of message body . Is there any way so the link gets recognized & also cursor position doesn't change? If I don't add new attachment ,just remove the old one & add the link then there is no problem link is recognized & cursor position also not changed. |
#5
|
|||
|
|||
![]()
Thanks Ken
|
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
removed attachment is still there but not accessible (OL 2003) | Wilfried | Outlook - General Queries | 0 | December 11th 08 04:46 PM |
Messages replies have an attachment of the original message | [email protected] | Outlook - General Queries | 2 | February 28th 07 04:34 PM |
Add-ins not being removed from toolbar | RoyalHale | Add-ins for Outlook | 1 | December 1st 06 03:04 PM |
email changes icon and attachment is removed | GK | Outlook - General Queries | 3 | February 23rd 06 03:40 AM |
Linebreaks getting removed??? | BDB | Outlook - General Queries | 4 | February 10th 06 10:39 AM |