|
|
Hi,
I need small information about outlook. The new mail or forward or reply a mail window is called as inspector window. But, by double clicking the message in the inbox, that message will be opened in new window, here i need to know, what we called that window?
And one more problem is, i have created outlook plugin for adding commandbar buttons to inspector windows. They are adding successfully. But here i am facing a different problem. i.e. for each new inspector window like newmail , forward and reply the command bar is adding only once,its working fine. But when the window ,which opens by double clicking the message in inbox giving more no. buttons(for example if we opens a message in a separte window,its addes one button. if open another message in another window two button are adding). like this button are adding more .
so plz specify any solution
-- Regards,
RamakoteswaraRao Koti Software Engineer, Nannacomputers Pvt Ltd
|
|
Any open Outlook item is displayed in an Inspector.
You most likely need an Inspector wrapper. See http://www.slovaktech.com/code_samples.htm#InspectorWrapper for a VB 6 example, see http://www.outlookcode.com/codedetail.aspx?id=797 for a C# example.
-- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm
"Ram" <koti[ at ]nannacomputers.com> wrote in message news:eNsDTpjfGHA.2188[ at ]TK2MSFTNGP05.phx.gbl...
[Quoted Text] > > Hi, > > I need small information about outlook. > The new mail or forward or reply a mail window is called as inspector > window. But, by double clicking the message in the inbox, that message > will > be opened in new window, here i need to know, what we called that window? > > And one more problem is, i have created outlook plugin for adding > commandbar > buttons to inspector windows. They are adding successfully. But here i am > facing a different problem. i.e. for each new inspector window like > newmail > , forward and reply the command bar is adding only once,its working fine. > But when the window ,which opens by double clicking the message in inbox > giving more no. buttons(for example if we opens a message in a separte > window,its addes one button. if open another message in another window two > button are adding). like this button are adding more . > > so plz specify any solution > > -- > Regards, > > RamakoteswaraRao Koti > Software Engineer, > Nannacomputers Pvt Ltd > >
|
|
Hi,
How it should be differentiate the new mail inspetor window and the inspepctor window,which is opened by doubleclicking mail in any folder.
-- Regards,
RamakoteswaraRao Koti Software Engineer, Nannacomputers Pvt Ltd
"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> wrote in message news:OI39GmmfGHA.5096[ at ]TK2MSFTNGP02.phx.gbl...
[Quoted Text] > Any open Outlook item is displayed in an Inspector. > > You most likely need an Inspector wrapper. See > http://www.slovaktech.com/code_samples.htm#InspectorWrapper for a VB 6 > example, see http://www.outlookcode.com/codedetail.aspx?id=797 for a C# > example. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com> Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 > Reminder Manager, Extended Reminders, Attachment Options > http://www.slovaktech.com/products.htm> > > "Ram" <koti[ at ]nannacomputers.com> wrote in message > news:eNsDTpjfGHA.2188[ at ]TK2MSFTNGP05.phx.gbl... > > > > Hi, > > > > I need small information about outlook. > > The new mail or forward or reply a mail window is called as inspector > > window. But, by double clicking the message in the inbox, that message > > will > > be opened in new window, here i need to know, what we called that window? > > > > And one more problem is, i have created outlook plugin for adding > > commandbar > > buttons to inspector windows. They are adding successfully. But here i am > > facing a different problem. i.e. for each new inspector window like > > newmail > > , forward and reply the command bar is adding only once,its working fine. > > But when the window ,which opens by double clicking the message in inbox > > giving more no. buttons(for example if we opens a message in a separte > > window,its addes one button. if open another message in another window two > > button are adding). like this button are adding more . > > > > so plz specify any solution > > > > -- > > Regards, > > > > RamakoteswaraRao Koti > > Software Engineer, > > Nannacomputers Pvt Ltd > > > > >
|
|
There is no difference, an Inspector is an Inspector.
If you mean how to tell a new email from an opened existing email check for EntryID. It is null string until an item has been saved. To tell if a newly opened item with null EntryID is a new email or reply or forward you have to look at the subject and look for RE: or FWD: or whatever in the localization language. You can also check on ConversationIndex and check it's length. It gets longer (as I recall by 20 bytes a clip) for each new item in a thread.
-- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm
"Ram" <koti[ at ]nannacomputers.com> wrote in message news:%2377uRG7fGHA.324[ at ]TK2MSFTNGP02.phx.gbl...
[Quoted Text] > Hi, > > How it should be differentiate the new mail inspetor window and the > inspepctor window,which is opened by doubleclicking mail in any folder. > > -- > Regards, > > RamakoteswaraRao Koti > Software Engineer, > Nannacomputers Pvt Ltd
|
|
Thanks ken, by using Entry ID, i have solved that one
-- Regards,
RamakoteswaraRao Koti Software Engineer, Nannacomputers Pvt Ltd
"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> wrote in message news:OHJ9JRAgGHA.3916[ at ]TK2MSFTNGP04.phx.gbl...
[Quoted Text] > There is no difference, an Inspector is an Inspector. > > If you mean how to tell a new email from an opened existing email check
for > EntryID. It is null string until an item has been saved. To tell if a newly > opened item with null EntryID is a new email or reply or forward you have to > look at the subject and look for RE: or FWD: or whatever in the localization > language. You can also check on ConversationIndex and check it's length. It > gets longer (as I recall by 20 bytes a clip) for each new item in a thread. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com > Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 > Reminder Manager, Extended Reminders, Attachment Options > http://www.slovaktech.com/products.htm > > > "Ram" <koti[ at ]nannacomputers.com> wrote in message > news:%2377uRG7fGHA.324[ at ]TK2MSFTNGP02.phx.gbl... > > Hi, > > > > How it should be differentiate the new mail inspetor window and the > > inspepctor window,which is opened by doubleclicking mail in any folder. > > > > -- > > Regards, > > > > RamakoteswaraRao Koti > > Software Engineer, > > Nannacomputers Pvt Ltd >
|
|
|