A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Original Attachment not removed



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 14th 09, 02:36 PM posted to microsoft.public.outlook.program_addins
sd[_2_]
external usenet poster
 
Posts: 69
Default Original Attachment not removed

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  
Old August 14th 09, 03:11 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Original Attachment not removed

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  
Old August 19th 09, 01:49 PM posted to microsoft.public.outlook.program_addins
sd[_2_]
external usenet poster
 
Posts: 69
Default Original Attachment not removed

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  
Old August 19th 09, 02:54 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Original Attachment not removed

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  
Old August 20th 09, 02:19 PM posted to microsoft.public.outlook.program_addins
sd[_2_]
external usenet poster
 
Posts: 69
Default Original Attachment not removed

Thanks Ken
 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 06:32 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.