Calling helper function in Evaluate/Modify (Ctrl+F7) window
- by m0f0
Lets say i wrote helper for TStringList
TslHelper = class helper for TStringList
function DoSth: boolean;
end;
Then ive included this helper (unit in which helper is defined) in unit i want to use it.
During debugging i hit Ctrl+F7 and i want to evaluate:
someStringList.DoSth
I cant get it to work. Is it possible?
Regards