Client has an technical Access application with various algorithms in VBA. He wants a system where users can type in and run their own algorithms. Seemed like a piece of cake with Windows Script Control. However I find it only runs single line statements
eg with language as vbscript
if x=1 then y=2
is ok but
if x=1 then
y=2
endif
gives 'Statement expected'
There is no such limitation according to MS's help - it should run any valid vbscript. Anyone else had a problem?
Cheers
eg with language as vbscript
if x=1 then y=2
is ok but
if x=1 then
y=2
endif
gives 'Statement expected'
There is no such limitation according to MS's help - it should run any valid vbscript. Anyone else had a problem?
Cheers

Comment