![]() |
Sergey Kornilov admin 1/15/2008 |
You can use "View as" type "Custom" to convert 20080115 string to 15.01.2008 manually. |
U
|
uludag author 1/16/2008 |
Hi, |
U
|
uludag author 1/21/2008 |
Any idea? Any help? |
J
|
Jane 1/23/2008 |
Hi, str = Mid(strValue,7,2) & "." & Mid(strValue,5,2) & "." & Mid(strValue,1,4) strValue = str Also you need to convert dd.mm.yyyy to yyyymmdd value on the add/edit page (in the Before record added/Before record updated events on the Events tab). str = Mid(dict("FieldName"),7,4) & "" & Mid(dict("FieldName"),4,2) & "" & Mid(dict("FieldName"),1,2) dict("FieldName") = str
|
U
|
uludag author 1/24/2008 |
Thank you very much, Jane. |
U
|
uludag author 1/30/2008 |
I could not solve the problem: to convert dd.mm.yyyy to yyyymmdd value on the add/edit page (in the Before record added/Before record updated events on the Events tab). ' Parameters:
' Parameters:
|
U
|
uludag author 1/30/2008 |
Ooopps. |