Last post Nov 28, 2019 06:42 AM by oned_gk
Member
140 Points
517 Posts
Nov 25, 2019 06:35 AM|jsshivalik|LINK
Hi
I have below code . I want that only Date should be displayed & in dd/MM/yyyy format.
"Ledger From : " & {?@frDate} & " To " & {?@toDate}
Thanks
Participant
1310 Points
442 Posts
Nov 28, 2019 12:49 AM|deepalgorithm|LINK
example
var date = DateTime.Now; var dateString = date.ToString("dd'/'MM'/'yyyy", CultureInfo.InvariantCulture);
All-Star
52803 Points
15764 Posts
Nov 28, 2019 06:42 AM|oned_gk|LINK
Use ToText() to format the the date
and CDate to convert the parameter value to date datatype, if it's not
Member
140 Points
517 Posts
Date Formula
Nov 25, 2019 06:35 AM|jsshivalik|LINK
Hi
I have below code . I want that only Date should be displayed & in dd/MM/yyyy format.
"Ledger From : " & {?@frDate} & " To " & {?@toDate}
Thanks
Participant
1310 Points
442 Posts
Re: Date Formula
Nov 28, 2019 12:49 AM|deepalgorithm|LINK
example
All-Star
52803 Points
15764 Posts
Re: Date Formula
Nov 28, 2019 06:42 AM|oned_gk|LINK
Use ToText() to format the the date
and CDate to convert the parameter value to date datatype, if it's not
Suwandi - Non Graduate Programmer