I want to display date in 09/07/2013 format instead of 09-jul-13.
Dim dt As Date = Date.Today MsgBox(dt)
if you want to display date along with time when you export to Excel then you can use this
xlWorkSheet.Cells(nRow, 3).NumberFormat = "dd/mm/yy h:mm AM/PM"