I have created a custom appointment edit form. I have created my own fields as well as disabling inherited fields that I did not need. For the fields that I did not need, I moved them to an empty part of the form, set the Visible property to False and erased anything in the text property.
However, I did this with the chkAllDay CheckBox. Set the Visible property to false and erased the text in the Text Property. The form designer reflects these changes - no text shows up next to the CheckBox. Anytime that I run my program and use the form this CheckBox is visible on the form, and the original text is displayed.
I have a simple fix for this. In the MouseMove Event handling I use the following code:
If (chkAllDay.Visible = True) Then
chkAllDay.Visible = False
End If
This will make the control not visible as desired anytime the user moves the mouse.
I just wanted to point out a possible bug - or if someone could show me what I'm doing wrong.
Thanks!
However, I did this with the chkAllDay CheckBox. Set the Visible property to false and erased the text in the Text Property. The form designer reflects these changes - no text shows up next to the CheckBox. Anytime that I run my program and use the form this CheckBox is visible on the form, and the original text is displayed.
I have a simple fix for this. In the MouseMove Event handling I use the following code:
If (chkAllDay.Visible = True) Then
chkAllDay.Visible = False
End If
This will make the control not visible as desired anytime the user moves the mouse.
I just wanted to point out a possible bug - or if someone could show me what I'm doing wrong.
Thanks!