Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Ben Hayat is correct. The GetType() does not return a DateTime but rather a Nullable data type....thus you will never get a DateTime field. You are better off using the Return Alternate Value on Null rather than Nullable within the Customization so that the data type remains a DateTime but allows for a NULL exception. As long as you have your field typed as a Nullable (or use Nullable Generics within the customization) the BrowseDialog will never see that property as a DateTime.
|