|
|
| Next: Sharing Public Calendar for Mac |
| Author |
Message |
whkratz External

Since: Apr 26, 2007 Posts: 52
|
Posted: Mon Apr 30, 2007 11:08 am Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: microsoft>public>outlook>bcm (more info?) |
|
|
Okay, I get it now. So the BCM link is working, but the native Outlook
Contacts link that we are trying to create with the vba is not working. Do
you have any other procedures in your ThisOutlookSession? Did you close down
Outlook and restart after inserting the code? Is there anything peculiar
about your Outlook or BCM installation?
Regards.....Bill Kratz
"Lon Orenstein" wrote:
> Bill:
>
> I'm on BCM 2007, version 3.00.5828.00... What I mean by "checking" is to
> click on Link to Record on the ribbon bar, in the Task dialog, and it shows
> the contact I originally right clicked on to create the task. The Contacts
> field at the bottom is there but no contacts are in it. Looking on the
> view, that column is empty too.
>
> HTH,
> Lon
>
> ___________________________________________________________
> Lon Orenstein
> pinpointtools, llc
> Lon DeleteThis @pinpointtools.com
> Author of Outlook 2007 Business Contact Manager For Dummies
> Author of the eBook: Moving from ACT! to Business Contact Manager
> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
> www.pinpointtools.com
>
>
> "whkratz" <whkratz DeleteThis @discussions.microsoft.com> wrote in message
> news:7B6C4390-1774-4CFD-901D-09DAEB9993FC@microsoft.com...
> > Hi Lon -- Well, that's a little strange. The Contact Link should appear
> > in
> > the Task (or Appointment) as soon as it opens in its Inspector form when
> > you
> > select Create New Task for Business Contact. Two questions:
> >
> > What version of Outlook BCM are you running?
> >
> > When you say "when I go back to check, it is indeed linked to the business
> > contact in Link Record", do you mean that the Link is displayed in the
> > Contacts field of the Task form, or do you mean that it shows up if you
> > display the Contacts field in some list view?
> >
> > Regards.....Bill Kratz
> >
> > "Lon Orenstein" wrote:
> >
> >> Bill:
> >>
> >> Thanks much!!! I entered the code and can see the Contacts field at the
> >> bottom of my task form, but after creating the task there are no contacts
> >> showing there. To create the task, I right click on the Business Contact
> >> list and choose Create, New Task for Business Contact, and when I go back
> >> to
> >> check, it is indeed linked to the business contact in Link Record.
> >>
> >> Any ideas?
> >>
> >> Thanks,
> >> Lon
> >>
> >> ___________________________________________________________
> >> Lon Orenstein
> >> pinpointtools, llc
> >> Lon DeleteThis @pinpointtools.com
> >> Author of Outlook 2007 Business Contact Manager For Dummies
> >> Author of the eBook: Moving from ACT! to Business Contact Manager
> >> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
> >> www.pinpointtools.com
> >>
> >>
> >> "am_box" <ambox DeleteThis @discussions.microsoft.com> wrote in message
> >> news:3FA02D5F-59AB-4968-87E6-3EE708A6238F@microsoft.com...
> >> > Thank you both for helping out - will give it a go.
> >> >
> >> > Rgds, Adam
> >> >
> >> > "Luther" wrote:
> >> >
> >> >> On Apr 27, 2:48 am, am_box <am_... DeleteThis @discussions.microsoft.com> wrote:
> >> >> > Hi,
> >> >> >
> >> >> > This looks great - but I am getting a Microsoft VB message - compile
> >> >> > error:
> >> >> >
> >> >> > Expected: line number or label or statement or end of statement.
> >> >> >
> >> >> > The first line of dashes are red, and the lines;
> >> >> >
> >> >> > Private Sub olInspectors_NewInspector(ByVal pInspector As
> >> >> > Outlook.Inspector)
> >> >> >
> >> >> > If Not objItem.UserProperties("TemporaryParentEntryId") Is
> >> >> > Nothing Then
> >> >> >
> >> >> > followed by the last dashed line
> >> >> >
> >> >> > are red too. I am sorry - but not a VB programmer just someone
> >> >> > trying
> >> >> > to
> >> >> > get the most of out BCM.
> >> >> >
> >> >> > If you can give me a shove in the right direction I would be
> >> >> > grateful.
> >> >> >
> >> >> > Regds, Adam
> >> >>
> >> >> BASIC is very line oriented. If something is meant to fit on a single
> >> >> line, then it better fit.
> >> >>
> >> >> That's the case with this:
> >> >>
> >> >> > If Not objItem.UserProperties("TemporaryParentEntryId") Is
> >> >> > Nothing Then
> >> >>
> >> >> The mail program wrapped it.
> >> >>
> >> >> Format it back to a single line and the problem should be fixed.
> >> >>
> >> >>
> >>
> >>
>
> |
|
| Back to top |
|
 |
Lon Orenstein External

Since: Jan 31, 2007 Posts: 232
|
Posted: Mon Apr 30, 2007 12:42 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Yes, you're correct on all those statements. I've not only closed Outlook
but also rebooted.
There are some other addins (our pinpointtools applications) in the Trust
Center but none of those use VBA code.
Could there be some problem with the code I copied? I saw the other posts
about this newsgroup inserting a CRLF and splitting the line -- I fixed that
and got it to save/compile correctly, but maybe there's something else off.
Here's my code, copied from my ThisOutlookSession. This is the line that I
had to fix:
*** If Not objItem.UserProperties("TemporaryParentEntryId") Is Nothing
Then ***
Option Explicit
Private WithEvents olInspectors As Outlook.Inspectors
Private Sub Application_Startup()
Dim olApp As New Outlook.Application
Set olInspectors = olApp.Inspectors
End Sub
Private Sub olInspectors_NewInspector(ByVal pInspector As Outlook.Inspector)
Dim olApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objItem As Object
Dim strID As String
Dim bcmContact As Outlook.ContactItem
Set olApp = CreateObject("Outlook.Application")
Set objNS = olApp.GetNamespace("MAPI")
Set objItem = pInspector.CurrentItem
If objItem.Class = olTask Or olAppointment Then
If Not objItem.UserProperties("TemporaryParentEntryId") Is Nothing
Then
strID = objItem.UserProperties("TemporaryParentEntryId")
Set bcmContact = objNS.GetItemFromID(strID)
objItem.Links.Add bcmContact
End If
End If
Set bcmContact = Nothing
Set objItem = Nothing
Set objNS = Nothing
Set olApp = Nothing
End Sub
Private Sub Application_Quit()
Set olInspectors = Nothing
End Sub
Thanks for all your help on this. The BCM Community is thrilled to see you
here and as soon as we get this working, I'll ask you to expand it to show
the Phone Number of that Business Contact in the views. That will satisfy
another 200 people here.
Take care,
Lon
___________________________________________________________
Lon Orenstein
pinpointtools, llc
Lon.TakeThisOut@pinpointtools.com
Author of Outlook 2007 Business Contact Manager For Dummies
Author of the eBook: Moving from ACT! to Business Contact Manager
800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
www.pinpointtools.com
"whkratz" <whkratz.TakeThisOut@discussions.microsoft.com> wrote in message
news:5486DE00-610A-435E-B65B-2F5B7B8674E0@microsoft.com...
> Okay, I get it now. So the BCM link is working, but the native Outlook
> Contacts link that we are trying to create with the vba is not working.
> Do
> you have any other procedures in your ThisOutlookSession? Did you close
> down
> Outlook and restart after inserting the code? Is there anything peculiar
> about your Outlook or BCM installation?
>
> Regards.....Bill Kratz
>
> "Lon Orenstein" wrote:
>
>> Bill:
>>
>> I'm on BCM 2007, version 3.00.5828.00... What I mean by "checking" is to
>> click on Link to Record on the ribbon bar, in the Task dialog, and it
>> shows
>> the contact I originally right clicked on to create the task. The
>> Contacts
>> field at the bottom is there but no contacts are in it. Looking on the
>> view, that column is empty too.
>>
>> HTH,
>> Lon
>>
>> ___________________________________________________________
>> Lon Orenstein
>> pinpointtools, llc
>> Lon.TakeThisOut@pinpointtools.com
>> Author of Outlook 2007 Business Contact Manager For Dummies
>> Author of the eBook: Moving from ACT! to Business Contact Manager
>> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
>> www.pinpointtools.com
>>
>>
>> "whkratz" <whkratz.TakeThisOut@discussions.microsoft.com> wrote in message
>> news:7B6C4390-1774-4CFD-901D-09DAEB9993FC@microsoft.com...
>> > Hi Lon -- Well, that's a little strange. The Contact Link should
>> > appear
>> > in
>> > the Task (or Appointment) as soon as it opens in its Inspector form
>> > when
>> > you
>> > select Create New Task for Business Contact. Two questions:
>> >
>> > What version of Outlook BCM are you running?
>> >
>> > When you say "when I go back to check, it is indeed linked to the
>> > business
>> > contact in Link Record", do you mean that the Link is displayed in the
>> > Contacts field of the Task form, or do you mean that it shows up if you
>> > display the Contacts field in some list view?
>> >
>> > Regards.....Bill Kratz
>> >
>> > "Lon Orenstein" wrote:
>> >
>> >> Bill:
>> >>
>> >> Thanks much!!! I entered the code and can see the Contacts field at
>> >> the
>> >> bottom of my task form, but after creating the task there are no
>> >> contacts
>> >> showing there. To create the task, I right click on the Business
>> >> Contact
>> >> list and choose Create, New Task for Business Contact, and when I go
>> >> back
>> >> to
>> >> check, it is indeed linked to the business contact in Link Record.
>> >>
>> >> Any ideas?
>> >>
>> >> Thanks,
>> >> Lon
>> >>
>> >> ___________________________________________________________
>> >> Lon Orenstein
>> >> pinpointtools, llc
>> >> Lon.TakeThisOut@pinpointtools.com
>> >> Author of Outlook 2007 Business Contact Manager For Dummies
>> >> Author of the eBook: Moving from ACT! to Business Contact Manager
>> >> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
>> >> www.pinpointtools.com
>> >>
>> >>
>> >> "am_box" <ambox.TakeThisOut@discussions.microsoft.com> wrote in message
>> >> news:3FA02D5F-59AB-4968-87E6-3EE708A6238F@microsoft.com...
>> >> > Thank you both for helping out - will give it a go.
>> >> >
>> >> > Rgds, Adam
>> >> >
>> >> > "Luther" wrote:
>> >> >
>> >> >> On Apr 27, 2:48 am, am_box <am_....TakeThisOut@discussions.microsoft.com>
>> >> >> wrote:
>> >> >> > Hi,
>> >> >> >
>> >> >> > This looks great - but I am getting a Microsoft VB message -
>> >> >> > compile
>> >> >> > error:
>> >> >> >
>> >> >> > Expected: line number or label or statement or end of statement.
>> >> >> >
>> >> >> > The first line of dashes are red, and the lines;
>> >> >> >
>> >> >> > Private Sub olInspectors_NewInspector(ByVal pInspector As
>> >> >> > Outlook.Inspector)
>> >> >> >
>> >> >> > If Not objItem.UserProperties("TemporaryParentEntryId")
>> >> >> > Is
>> >> >> > Nothing Then
>> >> >> >
>> >> >> > followed by the last dashed line
>> >> >> >
>> >> >> > are red too. I am sorry - but not a VB programmer just someone
>> >> >> > trying
>> >> >> > to
>> >> >> > get the most of out BCM.
>> >> >> >
>> >> >> > If you can give me a shove in the right direction I would be
>> >> >> > grateful.
>> >> >> >
>> >> >> > Regds, Adam
>> >> >>
>> >> >> BASIC is very line oriented. If something is meant to fit on a
>> >> >> single
>> >> >> line, then it better fit.
>> >> >>
>> >> >> That's the case with this:
>> >> >>
>> >> >> > If Not objItem.UserProperties("TemporaryParentEntryId")
>> >> >> > Is
>> >> >> > Nothing Then
>> >> >>
>> >> >> The mail program wrapped it.
>> >> >>
>> >> >> Format it back to a single line and the problem should be fixed.
>> >> >>
>> >> >>
>> >>
>> >>
>>
>> |
|
| Back to top |
|
 |
whkratz External

Since: Apr 26, 2007 Posts: 52
|
Posted: Mon Apr 30, 2007 12:42 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Lon -- The code looks fine after the correction you made. Where is your
macro security set (Tools | Macro | Security)?
Regards.....Bill Kratz |
|
| Back to top |
|
 |
Lon Orenstein External

Since: Jan 31, 2007 Posts: 232
|
Posted: Mon Apr 30, 2007 1:23 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
It's set to "Warnings for signed macros; all unsigned macros are disabled"
Thanks,
Lon
___________________________________________________________
Lon Orenstein
pinpointtools, llc
Lon DeleteThis @pinpointtools.com
Author of Outlook 2007 Business Contact Manager For Dummies
Author of the eBook: Moving from ACT! to Business Contact Manager
800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
www.pinpointtools.com
"whkratz" <whkratz DeleteThis @discussions.microsoft.com> wrote in message
news:46586AE5-9F14-469A-9795-3EE40CD13F20@microsoft.com...
> Lon -- The code looks fine after the correction you made. Where is your
> macro security set (Tools | Macro | Security)?
>
> Regards.....Bill Kratz |
|
| Back to top |
|
 |
whkratz External

Since: Apr 26, 2007 Posts: 52
|
Posted: Mon Apr 30, 2007 1:23 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Okay, that's likely the glitch. Set it for "No Security" (I know, I know, it
says it's not recommended -- we'll deal with that later). Close and restart
Outlook, and let's try it again.
Regards.....Bill Kratz
"Lon Orenstein" wrote:
> It's set to "Warnings for signed macros; all unsigned macros are disabled"
>
> Thanks,
> Lon
>
> ___________________________________________________________
> Lon Orenstein
> pinpointtools, llc
> Lon.TakeThisOut@pinpointtools.com
> Author of Outlook 2007 Business Contact Manager For Dummies
> Author of the eBook: Moving from ACT! to Business Contact Manager
> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
> www.pinpointtools.com
>
>
> "whkratz" <whkratz.TakeThisOut@discussions.microsoft.com> wrote in message
> news:46586AE5-9F14-469A-9795-3EE40CD13F20@microsoft.com...
> > Lon -- The code looks fine after the correction you made. Where is your
> > macro security set (Tools | Macro | Security)?
> >
> > Regards.....Bill Kratz
>
> |
|
| Back to top |
|
 |
Lon Orenstein External

Since: Jan 31, 2007 Posts: 232
|
Posted: Mon Apr 30, 2007 3:45 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Yep, after I reset it to No Security, and then fought off all those locusts
and dodged the lightning bolts, it worked just fine. I appreciate your
support and contribution!
Now, about displaying the contact's phone number in the view...
Take care,
Lon
___________________________________________________________
Lon Orenstein
pinpointtools, llc
Lon DeleteThis @pinpointtools.com
Author of Outlook 2007 Business Contact Manager For Dummies
Author of the eBook: Moving from ACT! to Business Contact Manager
800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
www.pinpointtools.com
"whkratz" <whkratz DeleteThis @discussions.microsoft.com> wrote in message
news:F3484EC9-F7B1-4AB3-9E64-A14B1BD3AA36@microsoft.com...
> Okay, that's likely the glitch. Set it for "No Security" (I know, I know,
> it
> says it's not recommended -- we'll deal with that later). Close and
> restart
> Outlook, and let's try it again.
>
> Regards.....Bill Kratz
>
> "Lon Orenstein" wrote:
>
>> It's set to "Warnings for signed macros; all unsigned macros are
>> disabled"
>>
>> Thanks,
>> Lon
>>
>> ___________________________________________________________
>> Lon Orenstein
>> pinpointtools, llc
>> Lon DeleteThis @pinpointtools.com
>> Author of Outlook 2007 Business Contact Manager For Dummies
>> Author of the eBook: Moving from ACT! to Business Contact Manager
>> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
>> www.pinpointtools.com
>>
>>
>> "whkratz" <whkratz DeleteThis @discussions.microsoft.com> wrote in message
>> news:46586AE5-9F14-469A-9795-3EE40CD13F20@microsoft.com...
>> > Lon -- The code looks fine after the correction you made. Where is
>> > your
>> > macro security set (Tools | Macro | Security)?
>> >
>> > Regards.....Bill Kratz
>>
>> |
|
| Back to top |
|
 |
whkratz External

Since: Apr 26, 2007 Posts: 52
|
Posted: Mon Apr 30, 2007 3:45 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Okay Lon, that's good news.
Now about that phone number display. I'll need you to explain just a bit
further. The primary purpose of this code was to create a link "back" to a
Business Contact or Account from a Task or Appointment created within BCM.
The idea is that when you are looking at your list of Tasks or Appointments
in your default pst, you may have any number of them that originated in BCM.
If you open one, and cannot easily navigate back to the Contact or Account
that is related, it can be pretty hard to know what to do with the open Item.
With the links created by this code, you can open a native Task or
Appointment, and then via the Contacts link you can quickly open the Business
Contact or Account to see what the heck is going on with that person(s).
Once you have opened that Contact or Account form, you have their phone
number displayed. So I'm not quite sure where and how you are suggesting
that we display the phone number. Let me know and maybe we'll go for it.
Regards.....Bill Kratz
"Lon Orenstein" wrote:
> Yep, after I reset it to No Security, and then fought off all those locusts
> and dodged the lightning bolts, it worked just fine. I appreciate your
> support and contribution!
>
> Now, about displaying the contact's phone number in the view...
>
> Take care,
> Lon
>
> ___________________________________________________________
> Lon Orenstein
> pinpointtools, llc
> Lon DeleteThis @pinpointtools.com
> Author of Outlook 2007 Business Contact Manager For Dummies
> Author of the eBook: Moving from ACT! to Business Contact Manager
> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
> www.pinpointtools.com |
|
| Back to top |
|
 |
Lon Orenstein External

Since: Jan 31, 2007 Posts: 232
|
Posted: Mon Apr 30, 2007 5:22 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Bill:
The request has been made multiple times in this group for a function
similar to what people are used to in ACT (and other contact managers). In
their task list, they could see not only the subject of the task, but who it
was scheduled with (linked to, which you just fixed), and their phone number
(which we're all hoping you'll do next!). That way, a person can just look
at the task list, see the task (like make a follow up call to a prospect),
see who it applies to, and dial their number without ever leaving that one
screen.
So, that's why the request for the phone number too...
Thanks,
Lon
___________________________________________________________
Lon Orenstein
pinpointtools, llc
Lon.DeleteThis@pinpointtools.com
Author of Outlook 2007 Business Contact Manager For Dummies
Author of the eBook: Moving from ACT! to Business Contact Manager
800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
www.pinpointtools.com
"whkratz" <whkratz.DeleteThis@discussions.microsoft.com> wrote in message
news:A0D7D04E-9C3A-4ADE-B1BF-9C958DDFF858@microsoft.com...
> Okay Lon, that's good news.
>
> Now about that phone number display. I'll need you to explain just a bit
> further. The primary purpose of this code was to create a link "back" to
> a
> Business Contact or Account from a Task or Appointment created within BCM.
> The idea is that when you are looking at your list of Tasks or
> Appointments
> in your default pst, you may have any number of them that originated in
> BCM.
> If you open one, and cannot easily navigate back to the Contact or Account
> that is related, it can be pretty hard to know what to do with the open
> Item.
> With the links created by this code, you can open a native Task or
> Appointment, and then via the Contacts link you can quickly open the
> Business
> Contact or Account to see what the heck is going on with that person(s).
> Once you have opened that Contact or Account form, you have their phone
> number displayed. So I'm not quite sure where and how you are suggesting
> that we display the phone number. Let me know and maybe we'll go for it.
>
> Regards.....Bill Kratz
>
> "Lon Orenstein" wrote:
>
>> Yep, after I reset it to No Security, and then fought off all those
>> locusts
>> and dodged the lightning bolts, it worked just fine. I appreciate your
>> support and contribution!
>>
>> Now, about displaying the contact's phone number in the view...
>>
>> Take care,
>> Lon
>>
>> ___________________________________________________________
>> Lon Orenstein
>> pinpointtools, llc
>> Lon.DeleteThis@pinpointtools.com
>> Author of Outlook 2007 Business Contact Manager For Dummies
>> Author of the eBook: Moving from ACT! to Business Contact Manager
>> 800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
>> www.pinpointtools.com
> |
|
| Back to top |
|
 |
mrtimpeterson via OfficeK External

Since: Mar 01, 2006 Posts: 309
|
Posted: Mon Apr 30, 2007 6:21 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Satifying more people here is what it's all about.
-THP
Lon Orenstein wrote:
>Yes, you're correct on all those statements. I've not only closed Outlook
>but also rebooted.
>
>There are some other addins (our pinpointtools applications) in the Trust
>Center but none of those use VBA code.
>
>Could there be some problem with the code I copied? I saw the other posts
>about this newsgroup inserting a CRLF and splitting the line -- I fixed that
>and got it to save/compile correctly, but maybe there's something else off.
>Here's my code, copied from my ThisOutlookSession. This is the line that I
>had to fix:
>*** If Not objItem.UserProperties("TemporaryParentEntryId") Is Nothing
>Then ***
>
>Option Explicit
>Private WithEvents olInspectors As Outlook.Inspectors
>
>Private Sub Application_Startup()
> Dim olApp As New Outlook.Application
> Set olInspectors = olApp.Inspectors
>End Sub
>
>Private Sub olInspectors_NewInspector(ByVal pInspector As Outlook.Inspector)
> Dim olApp As Outlook.Application
> Dim objNS As Outlook.NameSpace
> Dim objItem As Object
> Dim strID As String
> Dim bcmContact As Outlook.ContactItem
>
> Set olApp = CreateObject("Outlook.Application")
> Set objNS = olApp.GetNamespace("MAPI")
> Set objItem = pInspector.CurrentItem
>
> If objItem.Class = olTask Or olAppointment Then
> If Not objItem.UserProperties("TemporaryParentEntryId") Is Nothing
>Then
> strID = objItem.UserProperties("TemporaryParentEntryId")
> Set bcmContact = objNS.GetItemFromID(strID)
> objItem.Links.Add bcmContact
> End If
> End If
>
> Set bcmContact = Nothing
> Set objItem = Nothing
> Set objNS = Nothing
> Set olApp = Nothing
>End Sub
>
>Private Sub Application_Quit()
> Set olInspectors = Nothing
>End Sub
>
>Thanks for all your help on this. The BCM Community is thrilled to see you
>here and as soon as we get this working, I'll ask you to expand it to show
>the Phone Number of that Business Contact in the views. That will satisfy
>another 200 people here.
>
>Take care,
>Lon
>
>___________________________________________________________
>Lon Orenstein
>pinpointtools, llc
>Lon@pinpointtools.com
>Author of Outlook 2007 Business Contact Manager For Dummies
>Author of the eBook: Moving from ACT! to Business Contact Manager
>800.238.0560 x6104 Toll Free (U.S. only) +1 214.905.0401 x6104
>www.pinpointtools.com
>
>> Okay, I get it now. So the BCM link is working, but the native Outlook
>> Contacts link that we are trying to create with the vba is not working.
>[quoted text clipped - 121 lines]
>>> >> >>
>>> >> >> Format it back to a single line and the problem should be fixed.
--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.aspx/outlook-bcm/200704/1 |
|
| Back to top |
|
 |
RC External

Since: Jun 12, 2006 Posts: 15
|
Posted: Mon Jul 27, 2009 12:38 pm Post subject: Re: Linking tasks to Contacts [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
There are a whole list of shortcomings BCM has. It is clear it was designed
by someone who very little need for contacts and contact management.
In any case, It seems that what William Kratz posted as a solution is great.
The only issue I have is I don't know how to activate it.
WK says we shoudl insert his vba code into "ThisOutlookSession". How do we
do this? Sorry I'm just a user not a programmer.
Thanks
rodolfo
"Luther" wrote:
> On Apr 27, 2:48 am, am_box <am_....TakeThisOut@discussions.microsoft.com> wrote:
> > Hi,
> >
> > This looks great - but I am getting a Microsoft VB message - compile error:
> >
> > Expected: line number or label or statement or end of statement.
> >
> > The first line of dashes are red, and the lines;
> >
> > Private Sub olInspectors_NewInspector(ByVal pInspector As
> > Outlook.Inspector)
> >
> > If Not objItem.UserProperties("TemporaryParentEntryId") Is
> > Nothing Then
> >
> > followed by the last dashed line
> >
> > are red too. I am sorry - but not a VB programmer just someone trying to
> > get the most of out BCM.
> >
> > If you can give me a shove in the right direction I would be grateful.
> >
> > Regds, Adam
>
> BASIC is very line oriented. If something is meant to fit on a single
> line, then it better fit.
>
> That's the case with this:
>
> > If Not objItem.UserProperties("TemporaryParentEntryId") Is
> > Nothing Then
>
> The mail program wrapped it.
>
> Format it back to a single line and the problem should be fixed.
>
> |
|
| Back to top |
|
 |
|
|
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
| |
|
|