[code]

Dim bndTemp As Binding

bndTemp = New Binding("Text", DsCustomersDB1, "tblCustomers.fldCustPFCDate")

txtCustPFC.DataBindings.Add(bndTemp)

[code]


The result of the above code has variable fldCustPFCDate with the value of: 9/1/2005 12:00:00 AM

In my Access tblCustomers data table, fldCustPFCDate has a format of short date and only contains the date: 9/1/2005 as its value.

My question is how do I mask this New Binding statement to show only the date?

Thanks,
Soleman