Nevermind, I figured it out.
If you're wondering, you can do it in 2 ways:
in your T-SQL script, use the convert function:
Convert(Char(10),datestring,101)
Or in
vb.net, use the following statements:
'strDate returns desire format
Dim strDate as String
strDate = String.Format("{0:dd/MM/yyyy}", CType(DtDate, Date))