Im havin troubles with a for statement
here is how i have done it
dim len as string = fd.text.length - 1
dim i as integer = 0
for i = len to 0
if fd.text.chars(i ) = "\" then
msgbox("\ found")
end if
next
this comes up with no errors but doesent work
here is how i have done it
dim len as string = fd.text.length - 1
dim i as integer = 0
for i = len to 0
if fd.text.chars(i ) = "\" then
msgbox("\ found")
end if
next
this comes up with no errors but doesent work
Comment