I have built a custom form in Outlook and I have had to add some script. When I run the form I receive the error, "Expected Identifier Line No: 1" I have tried...
Maybe you should post line #1? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers ...
I would like to detect if a profile has a password set using mapi. Currently I am trying IProfAdmin::AdminServices with the profile name and a null password,...
Passwords belong to individual mail accounts, not profiles. The password parameter in the Logon method is outdated and never used by Outlook. -- Sue Mosher,...
I was able to retrieve the selected text from the Inspector window using Redemption, as you recommended. I also need to retrieve the selected text from the...
That's a good point... "Function Set NEW = Item.UserProperties.Find("NEW") If NEW.Value = 0 Then NEW.Value = 1 Set RENAME = Item.UserProperties.Find("RENAME")...
Maybe it's the End If Statement the expected identifier.... Did I post faster than Sue Mosher??... Now if only my post would be answered as quick as this:)(no...
"Drolet, Sbastien"
SEBASTIEN.DROLET@...
Oct 1, 2004 8:22 pm
24462
You must give each subroutine or function a name in the statement where you declare it: Function MyFunction() -- Sue Mosher, Outlook MVP Author of Microsoft...
I've tried the End Statement and I'm still getting the error. Michael Hofford, MCSE Client\Server Engineer II Distributed Systems Support BB&T IT Operations,...
I add this to the first line: "Function Item.UserProperties.FindFunction" Then I get this: Script Error "Expected '(' Line No: 1" Michael Hofford, MCSE ...
That is not a valid function declaration. A function declaration may contain only the function name and any arguments. Please reread my previous message and...
Ok... That worked for line 1 but I'm still getting the same error for line 3. Michael Hofford, MCSE Client\Server Engineer II Distributed Systems Support BB&T...
It's a little hard to tell with the line wrapping that just what line 3 is. Perhaps you could just tell us? -- Sue Mosher, Outlook MVP Author of Microsoft...
The # of members changes as you go through the loop. Loop from objDL.MemberCount down to 1 (step -1) instead. ... From: verlox93 [mailto:Rudyard45@...] ...
No, there is no documented API for that. You can of course drop down to the low level of Windows messaging and hooks: use Spy++ (comes with VS) to figure out...
Hi, I'm searching for info on how to do this, or why it's not possible to do.... I want to do cdo session on exchange 5.5 server with a remote VBScript. An ...
"Drolet, Sbastien"
SEBASTIEN.DROLET@...
Oct 4, 2004 1:01 pm
24471
You would have to parse the folder's permissions, then apply them to the other folder using the Acl.dll and CDO. Hidden messages can't be copied intact...
Hello, I have a custom Addin (not COM Addin) installed in Outlook But when I am using Outlook Autmotation or Outlook Control View ActiveX, this Addin is not...
I have a custom help desk form that we use and after upgrading from OfficeXp to service pack 3 i can no longer use that form, does anyone have any ideas on...
Error messages? Other symptoms? Where is the form published? Where do the items using it reside? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook...
We had a similar problem when customs forms that were created on Outlook 2002/XP would not work in Outlook 2003. I posted a query here, and after not getting...
Hi! How it is possible to receive a photo from Contact? In what fields this information is kept? Thanks. Best regards, Andrew ________________________________ ...
The photo associated with an Outlook contact is stored in the item as an attachment named ContactPicture.jpg. Please omit the marquee signature when posting to...
http://www.outlookcode.com/d/comaddins.htm At the bottom of the page there is some info on reloading addins. Perhaps something similar could be used to load...
We have a Word template that I published as an Outlook form (in order to control certain addressing information). My help desk submits this form to various...
Lynne July
lynne.july@...
Oct 5, 2004 3:06 pm
24480
Hi, I'm experiencing trouble, or rather unstability in my server application using CDO 1.21s. I have a .Net Web Service using CDO to communicate with Exchange...
Is there some Unique Identifier stored in a property of a Contact that I can use to key each contact and check for changes to that contact? I want to store...
ContactItem.EntryID ... From: jljackson222 [mailto:jljackson222@...] Sent: Wednesday, October 06, 2004 7:47 AM To: outlook-dev@yahoogroups.com Subject:...
I posted a similar error earlier and the solution you provided moved me one step closer to a finished product. I thank all of you who have contributed. This is...