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

adding coomand bar buttons to inspector window



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 23rd 06, 09:28 AM posted to microsoft.public.outlook.program_addins
Ram
external usenet poster
 
Posts: 19
Default adding coomand bar buttons to inspector window


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


Ads
  #2  
Old May 23rd 06, 03:04 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default adding coomand bar buttons to inspector window

Any open Outlook item is displayed in an Inspector.

You most likely need an Inspector wrapper. See
http://www.slovaktech.com/code_sampl...spectorWrapper 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" wrote in message
...

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



  #3  
Old May 25th 06, 06:14 AM posted to microsoft.public.outlook.program_addins
Ram
external usenet poster
 
Posts: 19
Default adding coomand bar buttons to inspector window

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]" wrote in message
...
Any open Outlook item is displayed in an Inspector.

You most likely need an Inspector wrapper. See
http://www.slovaktech.com/code_sampl...spectorWrapper 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" wrote in message
...

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





  #4  
Old May 25th 06, 04:05 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default adding coomand bar buttons to inspector window

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 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" wrote in message
...
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


  #5  
Old May 26th 06, 07:16 AM posted to microsoft.public.outlook.program_addins
Ram
external usenet poster
 
Posts: 19
Default adding coomand bar buttons to inspector window

Thanks ken, by using Entry ID, i have solved that one

--
Regards,

RamakoteswaraRao Koti
Software Engineer,
Nannacomputers Pvt Ltd

"Ken Slovak - [MVP - Outlook]" wrote in message
...
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 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" wrote in message
...
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




 




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
Active Window bar in OE6 Max Outlook Express 2 March 21st 06 03:53 AM
Right Click on Inspector Window header jim Add-ins for Outlook 1 February 18th 06 12:09 AM
how to add commandbarbutton to inspector window Ram Outlook and VBA 0 January 19th 06 07:07 AM
how to add commandbarbutton to inspector window Ram Outlook - General Queries 1 January 18th 06 09:42 PM
how to add commandbarbutton to inspector window Ram Add-ins for Outlook 0 January 18th 06 04:18 PM


All times are GMT +1. The time now is 05:30 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.