delphi - CTRL + Click not working -
code browsing not working project. set search path source units using. , deleted .local
, .identcache
files. project compiling no problems. can make ctrl + click
work.
thanks
one bug aware of occurs when have class declares record inline, so:
tmyclass = class private fdata: record mydata: integer; end; end;
if have code many of ide's code insight/completion/whatever features stop working. fault stretches right delphi 6 , possibly beyond.
i fix class private type declaration:
tmyclass = class private type tdata = record mydata: integer; end; private fdata: tdata; end;
but if syntax not available in d2007 you'd need declare record type outside class.
another factor find can confuse ide if using lot of conditional statements ($ifdef
, like).
finally i'd recommend installing andreas hausladen's idefixpack improve ide behaviour.
of course, problem may caused else, without being able experiment actual code, have guess degree.
Comments
Post a Comment