Results 1 to 3 of 3

Thread: Month calendar And XML parsing

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    6

    Question Month calendar And XML parsing

    Hi all,

    does anybody knows how to disable the bolded current date which occurs when the monthcalendar loads? my code is as below

    Private Sub MonthCalendar1_DateChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DateRangeEventArgs) Handles MonthCalendar1.DateChanged
    MonthCalendar1.UpdateBoldedDates()
    If (MonthCalendar1.SelectionStart() >= DateTime.Today()) Then
    f3.Label10.Text() = MonthCalendar1.SelectionStart
    f3.Label12.Text() = ComboBox1.SelectedItem()
    f3.Label15.Text = ComboBox1.SelectedItem() & " 1"
    f3.Label16.Text = ComboBox1.SelectedItem() & " 2"
    f3.ShowDialog()
    Me.Dispose()
    End If


    and one more thing, can a stand alone vb .net application send data thru XML parsing? which parser is best DOM or SAX?

    Very grateful for any help provided...
    thanks for reading too

  2. #2
    Junior Member
    Join Date
    Jul 2004
    Location
    Port Huron, Michigan
    Posts
    20
    Be more specific on the XML question?

    As for Today date, to remove the circle and the display of it use:
    cal.ShowToday = False
    cal.ShowTodayCircle = False

    As for it being bolded, its not, so I can only assume you mean the circle?

    Chris

  3. #3

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    6
    thanks for the help that you've provided but thats not what i meant

    what i meant was that the date bolded by the title back color and not those properties that you stated above.

    the problem is that the event won't be activated when i run the file and click on today's date

    and for the xml part, i used the xmlserializer and managed to solve my problems
    Attached Images Attached Images  

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width