I want to display date in 09/07/2013 format instead of 09-jul-13.
Dim dt As Date = Date.Today MsgBox(dt)
You could decompose the date into it's constituent parts and then concatenate them together like this:
MsgBox(Now.Day & "/" & Now.Month & "/" & Now.Year)