Imports Infragistics.Win Imports Infragistics.Win.UltraWinEditors Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' Call the DropDown method to programmatically display ' the DropDown calendar Me.UltraDateTimeEditor1.DropDown() End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinEditors; private void button1_Click(object sender, System.EventArgs e) { // Call the DropDown method to programmatically display // the DropDown calendar this.ultraDateTimeEditor1.DropDown(); }