N
nomail1983
Sigh, I left my VBA programming book at home.
How do I determine the type of a function argument?
For example, I want to the following (pseudocode):
function myfunc(arg)
if arg type is Range then
blah blah
end if
end function
Moreover, how do I determine all the values that "arg type" can be?
For example, I want to the following (pseudocode):
function myfunc(arg)
select case arg type
case Range
blah blah
case This
blah blah
case That
blah blah
end select
I need to know all the possible cases.
How do I determine the type of a function argument?
For example, I want to the following (pseudocode):
function myfunc(arg)
if arg type is Range then
blah blah
end if
end function
Moreover, how do I determine all the values that "arg type" can be?
For example, I want to the following (pseudocode):
function myfunc(arg)
select case arg type
case Range
blah blah
case This
blah blah
case That
blah blah
end select
I need to know all the possible cases.