I have Server, and a Client. I want to display Server Date in Crystal report Print field instead of local date of Client. How can I do that?
标签:
crystal-reports
相关问题
- Crystal Report SP26 SetDataSource() Method failed
- Crystal Report in .NET Framework 4.0
- right to left string in crystal report
- Loading Crystal Report from embedded resource
- Suppress Nonadjacent Duplicates in Report
相关文章
- What is the best way to cleanup the resources used
- How to pass a list of values into a crystal report
- Crystal Report Sub Report Page Break
- Issue related to vertical line in Crystal Reports
- Dynamically change database type, source etc in Cr
- Converting total time in integer into HH:MM format
- Crystal Report: How to evaluate multiple IF statem
- How to resolve Crystal Report version conflict and
You would have to return the server date from the SQL Server to your Crystal Report and replace the PrintDate field with your new field.
e.g
SQL
Replace
{PrintDate}
in the Crystal Report with{ServerDateTime}
from the list of Database Fields