DOCERR: How to Create a Blank DateTime Documented IncorrectlyLast reviewed: December 12, 1995Article ID: Q141084 |
The information in this article applies to:
SUMMARYPage 32 of the "Developers Guide" states "To assign blank DateTime values, use braces with a colon." Based on the documentation, the following uses should generate blank datetime values, but they do not.
Method OnetBlankDate1 = {:} tBlankDate1 = { } &&blank space between brackets -or- STORE {:} TO tBlankDate1 STORE { } TO tBlankDate1 The result is "12/30/1899 12:00:00 AM" -- Not a blank DateTime.
Method Two
tBlankDate1 = {} && no blank spaces between bracketstBlankDate1 = {/} -or- STORE {} TO tBlankDate1 STORE {/} TO tBlankDate1 The result is " / / " -- A blank date, but time is not showing.
MORE INFORMATIONTo get a blank DateTime value use either of the following: tBlankDate1 = {/:} tBlankDate1 = {//:} -or- STORE {/:} TO tBlankDate1 STORE {//:} TO tBlankDate1
The result is " / / : : AM"The incorrect references to assign a blank DateTime value are:
|
Additional reference words: 3.00 VFoxWin blank date time datetime
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |