I've downloaded the lite version for the scheduler but I'm trying to adapt it for SQL server rather than SQLite but I'm encountering problems in the example vb. Is there a download available for the SQL version of the tutorial?
As an example of one of the issues I'm having:
If (Not IsPostBack) Then
loadResources()
DayPilotScheduler1.DataSource = dbGetEvents(DayPilotScheduler1.StartDate, DayPilotScheduler1.Days)
DayPilotScheduler1.DataBind()
Dim startday As New DateTime(2012, 7, 1)
DayPilotScheduler1.SetScrollX(startday)
End If
The line of code 'DayPilotScheduler1.SetScrollX(startday)' shows as being incorrect, when I hover over it it says that SetScrollX is not a member of DayPilot.web.UI.DayPilotScheduler. I've probably missed something out but I can't see what.
Many thanks