I need to write many report by using Cyrstal report.
All the date format must be YMD , yyyy-mm-dd, I found that I need to set it
one by one.
Does any shortcut I can default the dateformat ???
Thanks a lot
1. yyyy-MM-dd HH:mm:ss:fff dateformat & datagrid
Hi, I've tried to get to this formatting stuff once, a while ago. I still didn't figure out how to format a date-column in a (data)-grid. I have a dynamic query that returns a # of columns. When it contains datetime-columns, I want these columns formatted like SQLServer-datetimeformat 121. I don't want the query to return datetime-columns converted to strings because they are used for calculations I want to hide some columns from the grid. Should I do this by setting the with to zero ? I am also looking for an "autowith"-activation for all columns of that grid. Thanks, Jobi
2. How to configure DateFormat in a DateTimePicker control - VB.Net
3. How to get the dateformat (yyyymmdd)
e.g my date is 02-02-2005 now, How can I get the format into 20050202 ?? thanks a lot Btw, As i remember, there is a web site which let us to search the old post ? (I resinstall my PC, so all the bookmark disappear) Does anyone know ?
4. Dateformat on databound textboxes? - VB.Net
If my input date is 2004-02-05, I want to get '200402' Can anyone know the simple way to do ? Thanks a lot -- .
7. DateFormat - String Manipulating
Hi,
I receive a DateTime-string in this format:
02.02.2004 10:37:21
for my indexserver I need this format:
2004/02/02
I worked with the DatePart funtion
strMetaDate = DatePart("yyyy", d) & "-" & DatePart("m", d) & "-" &
DatePart("d", d)
but then I got this date back: 2004/2/2
I tried to use Format-function but I got an error
strMetaDate = Format(d, "yyyy") & "-" & Format(d, "mm") & "-" &
Format(d, "dd")