I'm a long time RPG and web developer (Java and PHP) but not VRPG
Does anyone know how to store a packed decimal array in a session and then retrieve it. Sounds trivial but I can't get it to work.
something like:
DclArray test type(*packed) *len(8,0) dim(22)
Session("save") = test
Then on button click retrieve it
test = Session("save) *as Array
This works fine with strings and other classes but not arrays. Obviously something wrong with my syntax.