バージョン

予約ダイアログボックスの現在のアクティブ日への設定

次のコードは、現在のActiveDay を持つ予定ダイアログを開く方法を示しています。

Note

注: このコードは BeforeDisplayAppointmentDialog イベントに配置されると動作しません。DisplayAppointmentDialog への呼び出しがループを発生する BeforeDisplayAppointmentDialog への呼び出しを作成するからです。このコードはカスタムの予定ダイアログで使用されるかボタン クリックで予定ダイアログを表示する場合のものです。

Visual Basic の場合:

Private Sub UltraButton1_Click(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles UltraButton1.Click
	Me.UltraCalendarInfo1.DisplayAppointmentDialog(Me.UltraCalendarInfo1.ActiveDay.Date, _
	  Me.UltraCalendarInfo1.ActiveDay.Date, False)
End Sub

C# の場合:

private void ultraButton1_Click(object sender, System.EventArgs e)
{
	this.ultraCalendarInfo1.DisplayAppointmentDialog(this.ultraCalendarInfo1.ActiveDay.Date,
	  this.ultraCalendarInfo1.ActiveDay.Date, false);
}