L
Len
I am elaborating the ways to replace in my program variant variable
declarations with the object one. For example, if I have
Dim A as Variant
A=5
A="Hello"
I intend to have:
Dim A as Object
and to assign to A a number and a string.
How it can be done?
Thank you.
declarations with the object one. For example, if I have
Dim A as Variant
A=5
A="Hello"
I intend to have:
Dim A as Object
and to assign to A a number and a string.
How it can be done?
Thank you.