如何删除时间并仅在RDLC中显示日期

时间:2012-02-04 11:50:02

标签: c# winforms rdlc

我正在使用Winform(C#)和RDLC MySQL。在那里,我尝试仅在Tablex中显示日期。

但这种日期格式也有时间。如何删除时间。

我的表达是......,

=Fields!date.Value

请参阅下面的报告。

enter image description here

提前致谢?

我试过= Fields!date.Value.ToString(" dd / MM / yyyy")在表达式中但它通过错误,... 错误1验证时发生错误。 HRESULT =' 8000000A'

5 个答案:

答案 0 :(得分:22)

您可以使用FormatDateTime方法:

=FormatDateTime(Fields!date.Value, DateFormat.ShortDate)

或者您可以在属性窗口中设置格式: enter image description here

答案 1 :(得分:1)

=“当前日期: - ”&格式(现在,“dd / MM / yyyy hh:mm tt”) 这是针对当前日期和时间

答案 2 :(得分:0)

这对我有用:

# Ternary plot
# I want to create a plot for each level of the vector Strain_State in my dataframe called data:
lev<-levels(data$Strain_State)

# Create a list to store the plots:
plot_list=list()

# for loop to draw and store all plots at once:
for(i in 1:length(lev)){
  graph<-ggtern(data=subset(data, Strain_State==lev[i], select=c(Sex:neutral)), aes(time_pup, time_peanut, neutral)) + geom_point(size=3, aes(colour=Sex)) + ggtitle(lev[i]) + labs(x="Pup", y="Peanut butter", z="Avg.\nempty")+
    theme(axis.text=element_text(size=14),axis.title=element_text(size=16,face="bold"))+
    theme(legend.title=element_text(size=18))+
    theme(legend.text=element_text(size=16))+
    theme(plot.title = element_text(lineheight=.8, face="bold",size=22))
  plot_list[[i]]<-graph
} 

plot_list[[17]] # visualize each plot individually => works fine

library(gridExtra) # visualize several plots => problematic
BW<-plot_list[1:4]
grid.arrange(plot_list[[4]], plot_list[[2]], plot_list[[1]], plot_list[[3]], nrow=2)

答案 3 :(得分:0)

=FormatDateTime(Fields!dtStamp.Value, DateFormat.ShortDate)

该图像显示dateFormat的工作。

The image shows the working of dateFormat

答案 4 :(得分:-1)

甲酸(字段!date.Value, “日/月/年”)