Berlin, my first VCL project, a couple of forms and a dozen of frames, nothing special except a good sensation with this (for me) new IDE.
Berlin, my first VCL project, a couple of forms and a dozen of frames, nothing special except a good sensation with this (for me) new IDE.
Today Code Completion suddenly stopped working.
Any other project that I have opened so far has nothing to note about it: pressing Ctrl+Space is perfectly operative.
Nothing helped have moved the project in another, new, folder or deleting all project accessories files except dpr file: any help?
Today Code Completion suddenly stopped working.
Any other project that I have opened so far has nothing to note about it: pressing Ctrl+Space is perfectly operative.
Nothing helped have moved the project in another, new, folder or deleting all project accessories files except dpr file: any help?
The project does compile?
ReplyDeleteYes Agustin, it compiles without problems, all seems absolutely as before, except that control space is dead (the mouse cursor shows a little animation when I do the keystrokes, but northing appears, this on all the units of that project).
ReplyDeleteI have used a dozen different Delphi IDEs but this is an absolute first time for me (and Berlin was a pleasure to work on, until today). I (desperately) don't want to be forced to reinstall the IDE...
I think someone else reported...and the solution.try doing a search for that thread?
ReplyDeleteBrian Hamilton Yes, thanks to confirm me that, I had some memory too of that report, and I've tried to find it, without success
ReplyDeletemaybe something to do with castella?
ReplyDeleteStart a blank project and check if code completion works. If not, you may need a re-install
ReplyDeleteDavid Nottage Already done. A blank project doesn't suffer of that problem. Update: after a couple of hours of attempts now the malfunction it's limited to only one of the units of that project. The magic should be to find WHAT still disturbs the IDE (the project compiles without a glitch)
ReplyDeleteHere's one thing that breaks code completion:
ReplyDeletehttps://quality.embarcadero.com/browse/RSP-14905
It's possible there are others
David Nottage Thanks, found! More precisely, this is exactly my case: https://quality.embarcadero.com/browse/RSP-14914 . I have an array of string declared in the private section of my frame. Thanks for your help, I'll add myself to the queue of who is waiting for this (simple?) fix...
ReplyDeleteOddly enough, that wasn't the one I was thinking of.. I seem to recall the same happening for a fixed-range string array
ReplyDeleteAh, the virtues of code-completion...
ReplyDeleteTry http://www.devjetsoftware.com/products/codeinsightplus/ as they fix their stuff a lot sooner than the Delphi team.
I'm really wondering why they haven't offered a hotfix for that issue...
ReplyDeleteThanks Jeroen Wiert Pluimers . A little workaround: using fixed length strings fixes the issue with code completion ("mylabels: array [1 .. 31] of string[30];")
ReplyDelete