![]() |
| 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. |
|
|||||||
| Tags: changing, contacts, details, list, prevent, users |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi All,
After entering the contact details in the contact form, How to prevent users from changing the details through the Conacts List ?? We have customised the contact form for not entering the non-codepage 1252 characters into the form. But, there is a possibility that user may do the trick by entering the non-codepage 1252 characters into the contact details through contacts list by clicking on a particular record with the help of a mouse and directly editing there. As per our requirement, the contact details shall be synchronised to Siebel through Exchange Server. Please suggest me how to avoid users editing the contact records through Contact List. |
| Ads |
|
#2
|
|||
|
|||
|
From my forthcoming Outlook 2007 programming book, this code should work with any version:
Dim mblnIsOpen Dim mblnIsClosing Function Item_Open() mblnIsOpen = True mblnIsClosing = False End Function Function Item_Write() Dim strMsg If Not mblnIsOpen Then Item_Write = False strMsg = "You cannot save an item without " & _ "opening it first." & vbCrLf & vbCrLf & _ "If you were editing this item using " & _ "in-cell editing, press Esc to cancel " & _ "the edits." MsgBox strMsg, , "Can't Save Unopened Item" End If If mblnIsClosing Then mblnIsClosing = False End If End Function Function Item_Close() mblnIsClosing = True If Item.Saved Then mblnIsOpen = False End If End Function -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Satish Boddapati" Satish wrote in message ... Hi All, After entering the contact details in the contact form, How to prevent users from changing the details through the Conacts List ?? We have customised the contact form for not entering the non-codepage 1252 characters into the form. But, there is a possibility that user may do the trick by entering the non-codepage 1252 characters into the contact details through contacts list by clicking on a particular record with the help of a mouse and directly editing there. As per our requirement, the contact details shall be synchronised to Siebel through Exchange Server. Please suggest me how to avoid users editing the contact records through Contact List. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to prevent users changing details in Contacts List | Satish Boddapati | Outlook - General Queries | 2 | October 11th 06 06:44 AM |
| How to prevent users changing details in Contacts List | Satish Boddapati | Outlook - Installation | 0 | October 10th 06 02:57 PM |
| How to prevent users changing details in Contacts List | Satish Boddapati | Outlook - Using Forms | 0 | October 10th 06 02:57 PM |
| How to prevent users changing details in Contacts List | Satish Boddapati | Outlook and VBA | 0 | October 10th 06 02:56 PM |
| How to prevent users changing details in Contacts List | Satish Boddapati | Outlook - Using Contacts | 0 | October 9th 06 08:30 AM |