I return from a cmethod in my dll a string, when I call that method form navisiom and try to put the return value in a Navision Text[1024] variable, it tell me that the string size is too big for the buffer size.. But the string return by my method is just 339 characters long.. Why is that?
0
Comments
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
while com.mymethod(var str) do begin
1024string := 1024string + str;
end;
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n