I am getting an error Option strict on disallows implicit conversion
from string to long
I get it for this code
iStartPosition = InStr(iStartPos ition + 1, RichTextBox1.Te xt, "A" Or
"a"
the "A" and "a" are underlined in blue. How can I fix this?
Say I want it to be:
iStartPosition = InStr(iStartPos ition + 1, RichTextBox1.Te xt, "A" Or
"a" Or "U" or "u" etc
how can I make this work?
from string to long
I get it for this code
iStartPosition = InStr(iStartPos ition + 1, RichTextBox1.Te xt, "A" Or
"a"
the "A" and "a" are underlined in blue. How can I fix this?
Say I want it to be:
iStartPosition = InStr(iStartPos ition + 1, RichTextBox1.Te xt, "A" Or
"a" Or "U" or "u" etc
how can I make this work?
Comment