favc4
Posts: 30
|
| Posted: 07/05/2006, 1:02 AM |
|
Common Functions. CCParseDate Function (0x800A0FA1)
Unable to parse the date value.
/MMAP/Common.asp, línea 1390
Why? This is in return of a filter for a grid with a date field as filter criteria, date formmating is set to General Date, already tryed other formats and no format as well, doesn't fix the prob.
Any workarounds?
Thanks
_________________
Programming win32 and went crazy... |
 |
 |
DonB
|
| Posted: 07/05/2006, 7:29 PM |
|
Is the date NULL?
--
DonB
http://www.gotodon.com/ccbth
|
|
|
 |
favc4
Posts: 30
|
| Posted: 07/06/2006, 12:31 AM |
|
Nop, in fact it works inversely; when the date is unset within the record form (the filter form) it works fine, when using any date it returns that error
Thanks
_________________
Programming win32 and went crazy... |
 |
 |
DonB
|
| Posted: 07/06/2006, 4:15 AM |
|
What does line 1390 say & what function is it in? (These things move around
based on what your project has configured in it, so not everyone's line 1390
is the same)
--
DonB
http://www.gotodon.com/ccbth
|
|
|
 |
marcwolf
Posts: 361
|
| Posted: 07/06/2006, 6:47 PM |
|
Hi All
I have had this type of error before.
What generally happens is that there are 2 parts that are used by the Date parser
The first is the actual date string, and the second is an array containing the expected format of the date.
If the two do NOT match. i,e, there is a time component in the date where the format array is set up for a date only - you will get this error.
Not much to do to fix this other than examine the format of the date and then using debug code examinine the date format.
I often use application variables when debugging as I can then open another browser session and call a simple page that references that application variable.
Hope this helps..
Dave
_________________
' Coding Coding Coding
Keep Those Keyboards Coding.
Raw Code!!!!!!!
|
 |
 |
peterr
Posts: 5971
|
| Posted: 07/06/2006, 11:42 PM |
|
Are you using any default value for your date field? See http://forums.codecharge.com/search.php?s_keyword=Unabl...20&s_forum[]=21
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |