I have problem with the following code:- the hint string (tx) is saved properly and can be displayed with showmessage(tx). However it is truncated (only show 'abc' ) when the hint is displayed (on mouse over the particular cell) :-
ws.WriteComment(0, 1, 'abc | 12345');
tx := ws.ReadComment(0, 1);
showmessage(tx);
How can I solve this ? TQ in advance