Board index » cppbuilder » Delphi/C++ IDE feature
tim
![]() CBuilder Developer |
tim
![]() CBuilder Developer |
Delphi/C++ IDE feature2005-01-31 10:58:10 PM cppbuilder75 I was wondering, does anyone know whether the current Delphi 2005 (i guess that's the name) IDE has a "navigate backwards" feature like Visual Studio? Where it will jump backward and forward through the files you've been editing/viewing? thanks, tim |
Doychin Bondzhev
![]() CBuilder Developer |
2005-02-01 12:51:20 AM
Re:Delphi/C++ IDE feature
Yep. This is availabel in Delphi since version 4 I think and it is also
availabel in BCB. Doychin tim wrote: QuoteI was wondering, does anyone know whether the current Delphi 2005 (i |
tim
![]() CBuilder Developer |
2005-02-01 01:26:30 AM
Re:Delphi/C++ IDE feature
Really? Do you know the key combination or where I can find it? Under
Visual Studio it's listed under View or Edit, no such luck in BCB. Thanks, tim Doychin Bondzhev wrote: QuoteYep. This is availabel in Delphi since version 4 I think and it is also {smallsort} |
Robert Ehteshamzadeh (Borland QA)
![]() CBuilder Developer |
2005-02-02 02:48:21 AM
Re:Delphi/C++ IDE feature
In BCB6:
Startup the IDE ( creates a new app by default ) F12 to focus on the unit click on the class declaration Control-Click on TForm in the class declaration // this jumps you to the c++ header Forms.hpp Alt-Left arrow // jumps you back to Unit1.h Alt-Right // jumps back to Forms.hpp This works the same way in D6,D7 and in the IDEs with .NET support ( D8, D2005 ) tim wrote: QuoteReally? Do you know the key combination or where I can find it? Under |
Andrue Cope [TeamB]
![]() CBuilder Developer |
2005-02-02 05:21:49 PM
Re:Delphi/C++ IDE feature
Robert Ehteshamzadeh (Borland QA) wrote:
QuoteAlt-Left arrow is certainly the case with my Logitech mouse and is very handy. -- Andrue Cope [TeamB] [Bicester, Uk] info.borland.com/newsgroups/guide.html |
tim
![]() CBuilder Developer |
2005-02-02 11:15:20 PM
Re:Delphi/C++ IDE feature
Thanks for those comments, but maybe I'm missing something, but this is
really what I'm looking for. Say I'm browsing in one file or whatever, so my cursor is in a particular place in that file. Now, I remember, oh yeah, I need to look at function XYZ and it belongs to class B. So I double click that function in the ClassExplorer and jump there. So I look through the code and position my cursor somewhere in that file. Now I'd like to be able to hit Ctrl-Minus and Ctrl-Plus to swap back and forth. Of course, some of you may mention just click between the tabs. While this is true it's not as convenient and it relies on me to remember where I am while modifying 5-8 files. At any rate, thanks for all the suggestions. I don't think we've hit on it just yet. Has anyone actually used this functionality in VS? It's pretty nice what little I played with it. cheers, tim Robert Ehteshamzadeh (Borland QA) wrote: QuoteIn BCB6: |
Tamas Demjen
![]() CBuilder Developer |
2005-02-03 01:45:47 AM
Re:Delphi/C++ IDE feature
Really? The Browse Back and Browse Forward buttons are disabled for me.
In fact, they have always been disabled, they never worked for me, and they're disabled on my home computer, and on my colleague's computer as well. How do you turn this feature on? Tom Robert Ehteshamzadeh (Borland QA) wrote: QuoteIn BCB6: |
Brion L. Webster
![]() CBuilder Developer |
2005-02-03 02:21:59 AM
Re:Delphi/C++ IDE feature
Tamas Demjen wrote:
QuoteReally? The Browse Back and Browse Forward buttons are disabled navigation is tracked, not "normal" navigation. Not everything can be Ctrl-Clicked. I find it only semi-useful. -Brion |
Boian Mitov
![]() CBuilder Developer |
2005-02-03 09:36:37 AM
Re:Delphi/C++ IDE feature
Hi Tom,
Keep the Ctrl pressed and move the mouse over your source. It is a hiperlinked now. This is one of the greatest features of BCB & Delphi, never matched by anything else I have seen yet. It is enormous productivity boost. It however does not work well when you deal with a lot of namespaces in BCB :-( . I hope they will improve it, as I rate it the No.1 best feature of BCB and of any code editor I have ever seen. Cheers, Boian Tamas Demjen wrote: QuoteReally? The Browse Back and Browse Forward buttons are disabled for me. |
Chris Uzdavinis
![]() CBuilder Developer |
2005-02-03 09:54:05 AM
Re:Delphi/C++ IDE feature
Boian Mitov < XXXX@XXXXX.COM >writes:
QuoteHi Tom, I detest having to move my hands to the mouse just to get a special feature. Normally, when I'm programming I'm typing, and so my hands are not on the mouse. QuoteThis is one of the greatest features of BCB & Delphi, Chris (TeamB); |
Boian Mitov
![]() CBuilder Developer |
2005-02-03 11:57:03 AM
Re:Delphi/C++ IDE feature
Actually it is not only to the declaration, it is to anything. In
Delphi you can jump to declarations, definitions, local variables, globals, etc., ect., etc. The BCB version is just a bit less powerful, but it even works with some of the #define. It has some glitches in BCB however. It turns the code into a real hiperlink experience, and has been by far the best code navigation system I have ever seen in my life. It beats all. The keyboard feature may be nice, but usually you get the best benefit when you are analyzing existing code, this however is not the only use, and I agree that a keyboard option will be welcomed. Chris Uzdavinis (TeamB) wrote: QuoteTo what is it hyperlinked? I assume the declaration? If so, sounds |
Andrue Cope [TeamB]
![]() CBuilder Developer |
2005-02-03 05:08:39 PM
Re:Delphi/C++ IDE feature
Boian Mitov wrote:
QuoteThis is one of the greatest features of BCB & Delphi, never matched I described it in QC#720 but the long and short of it is that you can easily and often end up with the same file being open in two edit buffers without the IDE realising. It seems to be because goto declaration always opens with an absolute file path but the Project Manager and Unit list use a relative path if they can. -- Andrue Cope [TeamB] [Bicester, Uk] info.borland.com/newsgroups/guide.html |
Boian Mitov
![]() CBuilder Developer |
2005-02-04 06:10:59 AM
Re:Delphi/C++ IDE feature
Isn't it a great feature? Don't we just love those multiple openings
of .H files, and the associated AV in BCB ;-) . Andrue Cope [TeamB] wrote: QuoteI described it in QC#720 but the long and short of it is that you can |
Liz Albin
![]() CBuilder Developer |
2005-02-04 06:44:40 AM
Re:Delphi/C++ IDE feature
On Thu, 3 Feb 2005 09:08:39 +0000, Andrue Cope [TeamB] wrote:
QuoteI described it in QC#720 but the long and short of it is that you can liz |
Andrue Cope [TeamB]
![]() CBuilder Developer |
2005-02-04 05:03:52 PM
Re:Delphi/C++ IDE feature
Boian Mitov wrote:
QuoteIsn't it a great feature? Don't we just love those multiple -- Andrue Cope [TeamB] [Bicester, Uk] info.borland.com/newsgroups/guide.html |