Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Calendar
  New Posts New Posts RSS Feed - Not Delete CalendarEventLabels
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Not Delete CalendarEventLabels

 Post Reply Post Reply
Author
Message
Ingrid View Drop Down
Newbie
Newbie


Joined: 20 December 2006
Location: United Kingdom
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote Ingrid Quote  Post ReplyReply Direct Link To This Post Topic: Not Delete CalendarEventLabels
    Posted: 19 July 2007 at 2:17am
Hello,
the calendar Event cannot be deleted.
I become Error.

Dim pLabel As CalendarEventLabels

pLabel.Remove

Call pLabel.AddLabel(0, RGB(255, 255, 255), "Kein")
Call pLabel.AddLabel(1, RGB(255, 148, 132), "wichtig")
Call pLabel.AddLabel(2, RGB(132, 156, 231), "geschäftlich")

Thanks Ingrid
Back to Top
dentor View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2005
Location: France
Status: Offline
Points: 102
Post Options Post Options   Thanks (0) Thanks(0)   Quote dentor Quote  Post ReplyReply Direct Link To This Post Posted: 19 July 2007 at 12:41pm
Hello,
 
I think the good syntax must be :
 
With CalendarControl.DataProvider.LabelList
    .RemoveAll
    .AddLabel 0, RGB(255, 255, 255), "Kein"
    .AddLabel 1, RGB(255, 148, 132), "wichtig"
    .AddLabel 2, RGB(132, 156, 231), "geschäftlich"
End With
 
Does it work for you ?
 
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.