Hi, Ken, What should be noticed to avoid memory leak in outlook addin?

Status
Not open for further replies.
R

ryotyankou

Hi, Ken, thanks for your help so far, and i can work with my outlook addin

now, but it still have some troubles. I have three toolbar, host, editor and

viewer dialog, in ATL, VC2005, outlook2003. I use CComPtr and CComQIPtr to

process interfaces. Now it is a quite strange that if i open e-mails or

create new ones and then close them. The outlook then seems become sluggish.

This only happen in word editor mode. I do nothing specially, only hide all

other created toolbar(if it is in editor dialog)after create the toolbar. I

check my code again and again but couldn't find any useful informations why

it become sluggish, any sugguestions? Thank you. Ken.

 
There's no way I can tell what's going on, and I don't do C++/ATL

programming. You need to run the debugger and see what processes are

consuming CPU cycles and to profile your code to see if any of it is the

cause of the problem.

"ryotyankou " <u48591@uwe> wrote in message

news:9850b33529a73@uwe...
> Hi, Ken, thanks for your help so far, and i can work with my outlook addin
> now, but it still have some troubles. I have three toolbar, host, editor
> and
> viewer dialog, in ATL, VC2005, outlook2003. I use CComPtr and CComQIPtr to
> process interfaces. Now it is a quite strange that if i open e-mails or
> create new ones and then close them. The outlook then seems become
> sluggish.
> This only happen in word editor mode. I do nothing specially, only hide
> all
> other created toolbar(if it is in editor dialog)after create the toolbar.
> I
> check my code again and again but couldn't find any useful informations
> why
> it become sluggish, any sugguestions? Thank you. Ken.

> >
>
 
Hi, ken, i found that memory leak should be generated by resource files. I

use bitmap file and use PasteFace to set button image. But if i set all

button in text style(msoButtonCaption), the "memory is not enought" dialog

will not show then. Are there something i should notice while using bitmap as

resource? My process is load resource from RC file, save it in clipboard,

close clipboard, then delete the resource, and call PasteFace. Any idea?
- wrote:
> There's no way I can tell what's going on, and I don't do C++/ATL
> programming. You need to run the debugger and see what processes are
> consuming CPU cycles and to profile your code to see if any of it is the
> cause of the problem.
>
> > Hi, Ken, thanks for your help so far, and i can work with my outlook addin
> > now, but it still have some troubles. I have three toolbar, host, editor

> [quoted text clipped - 10 lines]
> > why
> > it become sluggish, any sugguestions? Thank you. Ken.



 
If that causes a memory leak then you're not releasing all the resources

you've instantiated. I don't know how you're doing the code but if you

create any DC's (device contexts) they must be deleted as must anything else

such as memory bitmaps.

"ryotyankou " <u48591@uwe> wrote in message

news:986a9cd6d55d1@uwe...
> Hi, ken, i found that memory leak should be generated by resource files. I
> use bitmap file and use PasteFace to set button image. But if i set all
> button in text style(msoButtonCaption), the "memory is not enought" dialog
> will not show then. Are there something i should notice while using bitmap
> as
> resource? My process is load resource from RC file, save it in clipboard,
> close clipboard, then delete the resource, and call PasteFace. Any idea?
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
R Hi, ken, GetState problem again, come in this post please? Outlook VBA and Custom Forms 4
Alex Cotton "invalid or unqualified reference" on code that should work Outlook VBA and Custom Forms 5
F Should a new email account also create new contacts Using Outlook 2
Brian Murphy Exchange Online Everything a Transport Rule should do and cannot Exchange Server Administration 1
L Should public contacts folder appear in "People" nav pane? Using Outlook 1
F Which upgrade should I go for and how do I do it please? Using Outlook 2
E Should I switch to IMAP? Using Outlook 0
N Outlook should use address in address book before the address in Autocomplete Using Outlook 0
A Unhandled exception: picture argument should be an image BCM (Business Contact Manager) 0
E Should I switch to redemption Outlook VBA and Custom Forms 11
E Should I switch to redemption Outlook VBA and Custom Forms 11
O Third-party VSTO 2005 SE plug-in for Outlook 2007: what should I signwith a publisher certificate? Outlook VBA and Custom Forms 3
R Which event should i advise? Outlook VBA and Custom Forms 2
T Re: mailItem.HTMLBody should retrieve only current text Outlook VBA and Custom Forms 1
Q Re: Detecting whether a toolbar is and should be shown Outlook VBA and Custom Forms 5
J 14 Steps To Building Your Bulk Emails So They Get Noticed Using Outlook 0

Similar threads

Back
Top