Brad and Tony, Thanks for your suggestions. I will try out the "hidden window" approach, then the "separate thread with hidden window" approach, and at last...
Hi guys, i have the following questions 1) is it possible to add my icons to the outlook explorer view . if so how to do it via code? 2) can i set myshortcut...
Hi, I'm currently working with an add-in developed in VC++ that annotates regular messages (IPM.Note) with security classifications when the user sends a...
Does anyone know of a way for Outlook or Outlook express to communicate with a web page. I know it's possible to view web pages in Outlook. Is there anyway...
I'm guessing from the lack of responses that either I didn't phrase it right, or nobody has done it. I'll give it one last shot though. Some of the staff here...
Hi, I am a VB Script programmer and new to outlook development.I want to add a Personal Address Book to outlook using VBscript or VBA. I have a windows 2000...
Hi I am using Redemption to send meeting requests to users. I can do this fairly easily. I now just have a problem trying to send meeting cancellations to...
... Hi all: I´m looking for advice on how to use the MAPI distribution lists of Outlook and Outlook Express. I´m accessing MAPI from C++ code and I have...
nsingh@...
Feb 2, 2005 6:04 pm
25038
Why do you want to do this? PAB is supported only for backwards compatibility with older data files. In any case, you'd need to use either the Modprof.exe tool...
Sorry, not Modprof.exe. For Outlook 2002, you can import a .prf file with the /importprf switch in Outlook. YOu cannot import it if Outlook is already running,...
Hello All, I'm hoping someone can help me with a way (I'm assuming VBA or VBS) to set a user's Signature for new messages. I've looked around and I've not been...
1) Outlook 2002 is the first version to support the OutlookBarShortcut.SetIcon method. I haven't played with it in Outlook 2003, since the Shortcuts pane is so...
That's because there is no such item. Signatures in OL2003 are account-specific, so the settings are buried in the mail profile settings in the Windows...
1. Call IDistList::GetContentsTable (get back iMAPITable) 2. Retrieve the PR_ENTRYID property for the members that you need to open 3. Use the value(s) of...
i mean the shorcut panes to the left in outlook (where outlook shortcuts sit) can i rearrange the order of display via code, to ensure my added shortcut pane ...
You cannot directly rearrange the order programmatically, but in Outlook 2002 and earlier versions, I think you can edit the .fav file when Outlook isn't...
Hello Sue, Thanks for the reply. I was hoping to find the object that would let me work with the dialog that sets the "New message signature". I've actually...
... Also, I was able to create a VBS that dynamically builds the user's .HTM, .RTF & .TXT signature files from the user's Active Directory data. The script...
Here's sme info on the AD attributes I use ... ' Asigns the user's info to variables. Set objuser = GetObject(qQuery) FullName = objuser.displayname EMail =...
Ah, I see. You read the individual attributes and generate a sig from them. I misread your original post to mean you read the actual HTML, etc from AD, which...
As I said, the Outlook object model offers no control over signatures at all. The only way to manipulate the dialog that sets the signatures would be with a...
Hi. I have an add-in that replaces Outlooks Insert File button and inserts the attachment itself. The add-in also gives the sender a summary of the message...
Greetings! I need to find all contacts having a particular category value set. Basically it means constructing a restriction for HrQueryAllRows(). The problem...
Use the RES_CONTENT (FL_SUBSTRING or FL_IGNORECASE) restriction, but set SPropValue.Value.lpszA, *not* the MVlpszA. The prop tags in the restriction should...
Hello Sue, Thanks for all the info. I've worked out some VBA code within Outlook using the SendKeys to set the Signature. Now I'm working on getting it out to...