I have a row of buttons with icons and I'd like to use a button to open a DateTimePicker (because and the DateTimePicker I have is the lemon in the fruitbowl).
Is there a way I can do...
because there is no PerformClick Click event. I can hide the Picker under a button, but somehow I need to get it to open from a button click.VB Code:
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MyDateTimePicker.PerformClick() End Sub


Reply With Quote