I am having a little problem with a databinding.

I am using the following to display a date in a textbox on a form:

Code:
.txtOpen.DataBindings.Add(New Binding("Text", frmEvent._MasterBase5_0DataSet, "tblEventMaster.dteOpen"))
This is to display a date field set as a short date. I do get a short date in the textbox, but it also includes the time. It is my guess that the problem is from the "Text", but I have no way of knowing that for sure. So on the assumption that I am correct, what should "Text" be replaced with?