Can anyone explain this?
I've been stepping thru my code (vb6)with f8 to find the source of a wrong value. here's the line where it's assigned
variables before:
temp: 100509.222 (type: variant)
thecontrol: undefined (type: control)
variables after:
temp: 100509.222 (type: variant)
thecontrol: 100509.22199999999(type: control)
it's bizarre. the equals sign doesn't work!
Jon
One day I will find a signature worthy of this space. That day has not yet come.
I've been stepping thru my code (vb6)with f8 to find the source of a wrong value. here's the line where it's assigned
variables before:
temp: 100509.222 (type: variant)
thecontrol: undefined (type: control)
Code:
thecontrol = temp
variables after:
temp: 100509.222 (type: variant)
thecontrol: 100509.22199999999(type: control)
it's bizarre. the equals sign doesn't work!
Jon
One day I will find a signature worthy of this space. That day has not yet come.