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

Set Label

 Post Reply Post Reply
Author
Message
cmm2006 View Drop Down
Senior Member
Senior Member


Joined: 26 September 2006
Status: Offline
Points: 118
Post Options Post Options   Thanks (0) Thanks(0)   Quote cmm2006 Quote  Post ReplyReply Direct Link To This Post Topic: Set Label
    Posted: 11 October 2006 at 6:10pm
Hi,
I checked the calendar sample, but I was wondering if there is anyway to set the event label without double click on the calendar and open a new event window.
what I am trying to say is: if I just select the starttime and the endtime, then type the subject, can I set the the event label to "Business" or any other label (will be set by default)?
Thank you,
Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 12 October 2006 at 3:26am
Hi,

Use corresponding Calendar's notifications. Example for your task:

Private Sub CalendarControl_EventAdded(ByVal EventID As Long)
    Dim pEvent As CalendarEvent
    Set pEvent = CalendarControl.DataProvider.GetEvent(EventID)
    If Not pEvent Is Nothing Then
        pEvent.Label = 2
    End If
    CalendarControl.DataProvider.ChangeEvent pEvent
End Sub


--
WBR,
Serge
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.