Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic display header text in win2003 theme (Read 2308 times)
dimmer
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 21
Joined: Jun 27th, 2007
display header text in win2003 theme
Jun 27th, 2007 at 1:10pm
Print Post  
Hi

I just downloaded planner.net and am playing around with a few things.  I'm having a problem displaying the header text of an appointment using the win2003 theme.  Here is the code that I'm running:

   Dim cmd As SqlCommand
       Dim conn As SqlConnection
       Dim dr As SqlDataReader

       Dim app As Appointment

       conn = New SqlConnection("server=xxxx;database=calendarTest;trusted_connection=true")
       conn.Open()

       cmd = New SqlCommand("SELECT * FROM dbo.Schedules", conn)
       dr = cmd.ExecuteReader

       While (dr.Read)

           app = New Appointment
           app.HeaderText = dr.GetValue(1).ToString
           MsgBox(app.HeaderText)

           app.StartTime = dr.GetDateTime(2)
           app.EndTime = dr.GetDateTime(3)

           'app.AllowMove = False
           'app.Visible = True

           calendar.Schedule.Items.Add(app)


       End While


When I run it with the default theme the header text of the appointment appears on the calendar, but when I change the theme to win2003 it does not...

Thanks for any suggestions

  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: display header text in win2003 theme
Reply #1 - Jun 27th, 2007 at 1:18pm
Print Post  
Are you using SingleMonth view (the default view)? If the items are not visible at all in Win2003, try setting Calendar.MonthSettings.DaySettings.HeaderSize to a value other than 0 (for example 15). A value of 0 indicates that the day cell header should occupy the entire day cell, thus leaving no space to display items.

I hope this helps,
Meppy
  
Back to top
 
IP Logged
 
dimmer
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 21
Joined: Jun 27th, 2007
Re: display header text in win2003 theme
Reply #2 - Jun 27th, 2007 at 1:24pm
Print Post  
Perfect! I'm gonna go through the tutorials and try a few other things but this app seems like exactly what we're looking for.

I'm sure you'll be hearing from me down the road...

Thanks a lot for your quick response
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint