<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Any simpler VB samples for custom data?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Any simpler VB samples for custom data?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 13 Aug 2026 22:49:28 +0000</pubDate>
  <lastBuildDate>Mon, 31 Aug 2009 10:25:19 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=15068</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Any simpler VB samples for custom data? : Glad to be of assistance   You...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52604&amp;title=any-simpler-vb-samples-for-custom-data#52604</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3253">Mr.Den</a><br /><strong>Subject:</strong> 15068<br /><strong>Posted:</strong> 31 August 2009 at 10:25am<br /><br />Glad to be of assistance <img src="http://forum.codejock.com/smileys/smiley1.gif" border="0"><DIV>&nbsp;</DIV><DIV>You are right, I forgot to paste in the rs.movenext <img src="http://forum.codejock.com/smileys/smiley9.gif" border="0">&nbsp;my apologies.</DIV>]]>
   </description>
   <pubDate>Mon, 31 Aug 2009 10:25:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52604&amp;title=any-simpler-vb-samples-for-custom-data#52604</guid>
  </item> 
  <item>
   <title><![CDATA[Any simpler VB samples for custom data? : Not sure if this is what you want......]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52596&amp;title=any-simpler-vb-samples-for-custom-data#52596</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3774">johnp</a><br /><strong>Subject:</strong> 15068<br /><strong>Posted:</strong> 31 August 2009 at 9:47am<br /><br />Not sure if this is what you want... I am using the calendar control as part of a room booking application where each room is represented as a separate column on the calendar. I use the following code to add each room as a schedule on the calendar. Of course, when you add events to the calendar you need to make sure that a each one has a scheduleid.<DIV>&nbsp;</DIV><DIV><BR>&nbsp;&nbsp;&nbsp; Dim pRCDesc As CalendarResourceDescription, pResourceCount As Integer<BR>&nbsp;&nbsp;&nbsp; Dim pData As CalendarDataProvider<BR>&nbsp;&nbsp;&nbsp; Dim pEvents As CalendarEvents<BR>&nbsp;&nbsp;&nbsp; Dim pSchedules As CalendarSchedules, pSchedCount As Integer<BR>&nbsp;&nbsp;&nbsp; <BR>'&nbsp;&nbsp; The calendar control uses schedule id's to group events by individual. Since we are dealing with rooms as opposed to individuals we will use the roomid as a schedule id.<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; g_DataResourcesMan.RemoveDataProvider (0)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Do Until g_DataResourcesMan.ResourcesCount = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g_DataResourcesMan.RemoveResource (0)<BR>&nbsp;&nbsp;&nbsp; Loop<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; bResult = g_DataResourcesMan.AddDataProvider("Provider=custom;DSN=" &amp; gAppSettings.DSN, xtpCalendarDPF_CreateIfNotExists + _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xtpCalendarDPF_SaveOnDestroy + xtpCalendarDPF_CloseOnDestroy)</DIV><DIV>&nbsp;&nbsp;&nbsp; If Not bResult Then Exit Function</DIV><DIV>&nbsp;&nbsp;&nbsp; Set pData = g_DataResourcesMan.DataProvider(0)<BR>&nbsp;&nbsp;&nbsp; Set pSchedules = pData.Schedules</DIV><DIV>&nbsp;&nbsp;&nbsp; If pSchedules Is Nothing Then Exit Function</DIV><DIV>&nbsp;&nbsp;&nbsp; With prsFacilityRooms<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ActiveConnection = gconLocalDatabase<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CursorType = adOpenDynamic<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .LockType = adLockReadOnly<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pstrSQL = "SELECT ID, ROOM FROM rbs_event..FACILITY_ROOMS WHERE FACILITYID = " &amp; cboFacilityLocation.ItemData(cboFacilityLocation.ListIndex)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If cboFacilityRooms.ListIndex &gt; 0 Then pstrSQL = pstrSQL &amp; " AND ID = " &amp; cboFacilityRooms.ItemData(cboFacilityRooms.ListIndex)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Open pstrSQL &amp; " ORDER BY ROOM"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Until .EOF<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pSchedules.AddNewSchedule CStr(!Id)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g_DataResourcesMan.AddResource !ROOM, True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MoveNext<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Loop<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pData.Save</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For pSchedCount = 0 To .RecordCount - 1</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set pRCDesc = g_DataResourcesMan.Resource(pSchedCount)</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pRCDesc.Resource.SetDataProvider pData, False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pRCDesc.Resource.ScheduleIDs.Add CInt(pSchedules(pSchedCount).Name)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pRCDesc.GenerateName = True</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Close<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; End With</DIV>]]>
   </description>
   <pubDate>Mon, 31 Aug 2009 09:47:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52596&amp;title=any-simpler-vb-samples-for-custom-data#52596</guid>
  </item> 
  <item>
   <title><![CDATA[Any simpler VB samples for custom data? : Wow...Thanks! That worked beautifully....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52543&amp;title=any-simpler-vb-samples-for-custom-data#52543</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5498">dgmoriarty</a><br /><strong>Subject:</strong> 15068<br /><strong>Posted:</strong> 28 August 2009 at 2:29pm<br /><br />Wow...Thanks! That worked beautifully. And so simple. (just forgot the rs.movenext in the loop! I was freaking out when I ran it and it locked up on me..lol)<br><br>Now...anyone have a sample for multiple columns that is as easy as this?<br><br>Thanks - David<br>]]>
   </description>
   <pubDate>Fri, 28 Aug 2009 14:29:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52543&amp;title=any-simpler-vb-samples-for-custom-data#52543</guid>
  </item> 
  <item>
   <title><![CDATA[Any simpler VB samples for custom data? : This code works for an access...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52540&amp;title=any-simpler-vb-samples-for-custom-data#52540</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3253">Mr.Den</a><br /><strong>Subject:</strong> 15068<br /><strong>Posted:</strong> 28 August 2009 at 12:02pm<br /><br />This code works for an access database, hope it helps: <DIV>&nbsp;</DIV><DIV>Option Explicit</DIV><DIV>&nbsp;</DIV><DIV>Private m_pEditingEvent As CalendarEvent</DIV><DIV>&nbsp;</DIV><DIV>Private Sub AddToCalendar()</DIV><DIV>&nbsp;</DIV><DIV>Dim rs As ADODB.Recordset</DIV><DIV>Dim sConn As String<BR>Dim sSQL As String<BR>Dim sDB As String</DIV><DIV>&nbsp;</DIV><DIV>On Error GoTo errHandler<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; sDB = "YourDatabase.mdb"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; sConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &amp; sDB &amp; ";Persist Security Info=False"<BR>&nbsp;&nbsp;&nbsp; sSQL = "SELECT * FROM ActionLog"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set rs = New ADODB.Recordset<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; rs.Open sSQL, sConn, adOpenDynamic, adLockOptimistic<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Do While rs.EOF = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set m_pEditingEvent = CalendarControl.DataProvider.CreateEvent<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If m_pEditingEvent.RecurrenceState &lt;&gt; xtpCalendarRecurrenceMaster Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.StartTime = rs!dStart<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.EndTime = rs!dEnd<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Subject = rs!sOperation<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Location = rs!sStation<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Body = rs!Body<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.AllDayEvent = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Label = GetStationColor(rs!sStation)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.BusyStatus = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.ScheduleID = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.PrivateFlag = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.MeetingFlag = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Reminder = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("Errors") = rs!lFilesProcErr<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("BackupComment") = rs!sBackupComment<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("RestoreComment") = rs!sRestoreComment<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("BackupUser") = rs!sUser<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("BackupStation") = rs!sStation<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("RefNo") = rs!sRefNo<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.CustomProperties.Property("FileErr") = rs!sFileError<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.DataProvider.AddEvent m_pEditingEvent<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Loop<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; rs.Close<BR>&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;&nbsp;&nbsp; CalendarControl.Populate</DIV><DIV><BR>errHandler:<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If Err.Number Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox Err.Number &amp; ", " &amp; Err.Description, vbCritical, ""<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set rs = Nothing<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Public Function GetStationColor(ByVal sPStation As String) As Integer</DIV><DIV>&nbsp;</DIV><DIV>On Error GoTo errHandler<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Select Case UCase$(sPStation)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case "DEVELOPMENT"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GetStationColor = 2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case "16-2"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GetStationColor = 3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case "10XP"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GetStationColor = 8<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case "11XP"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GetStationColor = 10<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GetStationColor = 9<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; End Select<BR>&nbsp;&nbsp;&nbsp; <BR>errHandler:<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If Err.Number Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox Err.Number &amp; ", " &amp; Err.Description, vbCritical, ""<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>End Function</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 28 Aug 2009 12:02:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52540&amp;title=any-simpler-vb-samples-for-custom-data#52540</guid>
  </item> 
  <item>
   <title><![CDATA[Any simpler VB samples for custom data? : Hi,I really like how this calendar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52511&amp;title=any-simpler-vb-samples-for-custom-data#52511</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5498">dgmoriarty</a><br /><strong>Subject:</strong> 15068<br /><strong>Posted:</strong> 28 August 2009 at 8:53am<br /><br />Hi,<br><br>I really like how this calendar control works, but does <b>ANYONE</b> have a simpler sample in VB? I want to use my own custom data. Just looking to add two columns and populate the calendar with data from my own database. Nothing fancy yet. I can figure out the rest from there once I can get the data to display. I could even do without the classes for the moment.<br><br>I have the trial for 30 days, but don't have 28 days to read through the documentation and trace through the sample code and classes to see what is going on. I see a lot of requests for a simpler example. If anyone has one, can you please pass it on?<br><br>Thanks,<br><br>David<br>]]>
   </description>
   <pubDate>Fri, 28 Aug 2009 08:53:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15068&amp;PID=52511&amp;title=any-simpler-vb-samples-for-custom-data#52511</guid>
  </item> 
 </channel>
</rss>