I 2 datas in 2 different databse:
varchar strNumber = 1, 2, 3, ...
int numNumber = (let just say any number)
I coded:
if inStr(strNumber, numNumber) then " Checked"
Not working, I realized I'm comparing 2 different data, varchar and int. I tried to use inStr(strNumber, Cstr(numNumber)) but it doesn't work either.
can you tell what is missing??? thanks
varchar strNumber = 1, 2, 3, ...
int numNumber = (let just say any number)
I coded:
if inStr(strNumber, numNumber) then " Checked"
Not working, I realized I'm comparing 2 different data, varchar and int. I tried to use inStr(strNumber, Cstr(numNumber)) but it doesn't work either.
can you tell what is missing??? thanks