How to change the date separator from mm/dd/yyyy to mm.dd.yyyy and add 00:00 in the end?

Hi @Greggy

Try like this expression

DateTime.ParseExact(hostDateFrom.toString, “MM/dd/yyyy”, System.Globalization.CultureInfo.InvariantCulture).ToString(“MM.dd.yyyy HH:mm”)

Or

CDate(hostDateFrom.toString).Tostring("MM.dd.yyyy HH:mm")

Output

Check out this blog and tutorial for more reference

Regards
Gokul