Imports Infragistics.Win.UltraWinSpellChecker
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Set the spell checker for the activity description field in the appointment dialog
Me.UltraCalendarInfo1.SpellCheckerForActivityDescription = Me.UltraSpellChecker1
'Set the spell checker for the activity subject field in the appointment dialog
Me.UltraCalendarInfo1.SpellCheckerForAppointmentSubject = Me.UltraSpellChecker1
'Set the calendar info for the week view
Me.UltraWeekView1.CalendarInfo = Me.UltraCalendarInfo1
End Sub