Has anyone programmed or come across a "Pop Up" disclaimer for Outlook? In other words, when a user launches Outlook, a dialog box appears with a Disclaimer....
Pitawala, Sam
sam.pitawala@...
Jan 2, 2003 5:06 pm
18281
This can be accomplished in many ways, here are a few., 1. Outlook VBA project Private Sub Application_Startup() If MsgBox("Do you agree with this is...
Khazen, Victor
victor.khazen@...
Jan 2, 2003 5:26 pm
18282
I'm developing a program for my office and I cannot find any information on how to develop outlook 2000 add-in's in VB6 when working in an outlook XP...
... You will need to develop using the Office 2000 library (MSO9.DLL). I am told that applications built using that, should also work under Office XP (Office ...
or you could forego the use of the MSADDIN tools in VB6 and write a raw connection class that implements IDTExtensibility2 and late binding. The only thing...
Hi all, One time message. Group Calendar for Outlook 2000/2002. No Exchange needed, only LAN connection ...
Veld, John in t
jiv@...
Jan 3, 2003 12:37 pm
18286
I'm trying to send information from a custom Outlook 2002 form to an Access database. The first field is finally working after I named the database field and...
Subject and Description on the left are the database fields, and on the right are my form fields from my outlook form... They would only work if they were...
You need to use the correct syntax for retrieving data from an Outlook item. Assuming that this code is running behind an Outlook form and you want the data...
Does anyone know how to read unread mail extract the body and then move the mail once the mail is set to unread to another folder? Or even better archive it? ...
Carlos Magalhaes
CarlosM@...
Jan 6, 2003 1:30 pm
18291
Hi all, I once read an article showing how to search for the default profile name in the reg then logging into that mail session using CDO with that mail ...
Carlos Magalhaes
CarlosM@...
Jan 6, 2003 2:21 pm
18292
Carlos, This is how I do it (in VB): Add this to your code: Private Function GetDefaultProfile() Dim strWindowsVersion Dim RootKey As String 'Find out which...
I have an Outlook Addin that places a custom toolbar on the inspector and explore windows. When I change the editor type within the inspector to use "word" as...
Hi all, I'm new to the group, and using Redemption to develop an Outlook Add-in. I've hit a bit of a snag as I can't find the MAPI property tag to access the...
Hi! All, We are trying to develop a Trusted ComAddin for OL XP. We are getting a security warning that "Some Other Program is trying to access your Outlook...
Hi, I customized my Redemption dll with the customizer you provide. It works very well and all but I have a question: I had to change theses lines in my code: ...
The Trusted COM addin technique applies only to Exchange environments. Otherwise, your choices are to recode using Extended MAPI or Redemption instead of...
The line CComPtr<Redemption::IAddressEntry> pAddEntry = NULL; essentially defines how C++ must treat pAddEntry. I.e. that it is a pointer to a COM object with...
I'm trying to populate a combo box with info from my sql db: Function Item_Open() Dim strsqlB, rsData2, conn2, rscnt, cnt, strCnn2 ' '----------------------set...
Hi All, In my custom outlook form I am using Script.FilesystemObject to writing data to the text files as well as reading data form the text files. In one of...
Mohanty, Debi (MED, T...
Debi.Mohanty@...
Jan 7, 2003 8:14 pm
18303
in my form I'm trying to retrieve db info. The connection and recordset are working properly and retriveing a value. I am trying to figure out how to...
Scripting is an Active-X control. Either Windows Scripting Host isn't installed on the users machine or it is not registered properly etc. Is the user using...
Hi, I'm new to Outlook programming though I've done a good bit with Excel and Access, and toyed with PowerPoint and Word. We're looking into Outlook to see if...
Andrew E Tegenkamp
andrew@...
Jan 7, 2003 9:58 pm
18306
As a novice programmer, I am currently developing some VB Scripting in Outlook. I have created a form with several fields of type "Number". However, when...
I have developed a VB form for outlook and would like to know if it is possible to have one of my tab strips of this form display a specified http URL. I can...
ah. that explains why i couldn't find the right property then. :) parsing it is! thanks for the quick reply ... property. Such a property is stored on the...
Or you can use RTFBody property and look at the first 100 or so characters. If "\fromtext" is present, the RTF Body was converted from text, hence the...