i like to use code like this in my TMS webcore application
test1 = string;
ptest1 = ^test1;
but i get an compiler error, stating
Not supported: pointer of test1
my fault or simply not possible ???
br
Michael
i like to use code like this in my TMS webcore application
test1 = string;
ptest1 = ^test1;
but i get an compiler error, stating
Not supported: pointer of test1
my fault or simply not possible ???
br
Michael
Pointers are not possible in a web application. In the browser, everything eventually runs as JavaScript and the concept pointer doesn't exist in JavaScript/browser.
Hi Bruno,
thx for the fast answer, thought so, but i kind of hoped i am wrong...
br
Michael