I've got:
shared DateVar abc;
This is being processed by a VB routine (a UFL) and CR8.5 will give me a "Memory Full" error if I try to call the VB routine and there is not a legal date value in the variable "abc".
What I can't figure out is how to test "abc" and if it is not legal, assign a legal value like say today's date. Things like:
if IsDate(abc)
don't work because you can't pass a variable to IsDate. I tried
if abc = Date(0,0,0)
and while that compiles, it doesn't help.
Any ideas?
shared DateVar abc;
This is being processed by a VB routine (a UFL) and CR8.5 will give me a "Memory Full" error if I try to call the VB routine and there is not a legal date value in the variable "abc".
What I can't figure out is how to test "abc" and if it is not legal, assign a legal value like say today's date. Things like:
if IsDate(abc)
don't work because you can't pass a variable to IsDate. I tried
if abc = Date(0,0,0)
and while that compiles, it doesn't help.
Any ideas?