How do i display the date in a specific format of MM - DD- YYYY I can pull the date but its seperated by / and only single digit i need the - seperators
gives me the date as 4/5/2013
i need it as 04-05-2013
i tried
and i get 41369
whatever that is supposed to be :confused:
Code:
Text1.Text = Date
i need it as 04-05-2013
i tried
Code:
Text1.Text = Format$(Date, MM - DD - YYYY)
whatever that is supposed to be :confused: