B
Brian
Hi,
No matter how i do this, I get the same warning. I don't understand the
warning....
Dim FILETYPE as string() = {"tree;.tree;*.tree"}
for x as integer = 0 to ubound(FILETYPE)
Orginal line---------------------------------------
FILETYPE(0) = Lcase(FILETYPE(0).Concat(".", FILETYPE(0)))
--------------------------------------------------
new try...---------------------------------------
dim strx as string = FILETYPE(0)
strx = Lcase(FILETYPE(0).Concat(".",FILETYPE(0)))
the warning message i am getting is "Access of shared member, constant
member, enum member or nested type through an instance qualifying expression
will not be evaluated."
Can anyone explain this to me to help me understand it?
Brian
No matter how i do this, I get the same warning. I don't understand the
warning....
Dim FILETYPE as string() = {"tree;.tree;*.tree"}
for x as integer = 0 to ubound(FILETYPE)
Orginal line---------------------------------------
FILETYPE(0) = Lcase(FILETYPE(0).Concat(".", FILETYPE(0)))
--------------------------------------------------
new try...---------------------------------------
dim strx as string = FILETYPE(0)
strx = Lcase(FILETYPE(0).Concat(".",FILETYPE(0)))
the warning message i am getting is "Access of shared member, constant
member, enum member or nested type through an instance qualifying expression
will not be evaluated."
Can anyone explain this to me to help me understand it?
Brian