> 1) In D5, can I quickly jump from an Objects procedures declaration
> (Interface statement) to its implementation - a la the reverse of Ctrl
Left
> Mouse Click(I'd like to use the keyboard rather than mouse).

I think CTRL-UP and CTRL-DOWN should do the trick for you. Might be
ctrl-shift-up and down tho, I dont have Delphi loaded to test it at the
moment.

> 2) Is it possible from an implementation to generate the interface
statement
> automatically (I guess default to private) - ie so you do not have to
type:
> Private
> Procedure myProcedure(Var myVar : Integer);
>
> .... and then the same stuff here ...
>
> Procedure myObject.myProcedure(Var myVar : Integer);
> Begin
> end;

type it in one place, then hit "ctrl-shift-C" - look under code completion
in the help :) If you are in the interface, it makes ALL the un-implemented
methods' implementations for you (with "begin / end;" only), if you do it in
a method, it only makes THAT method in, I think, the private section.

Nic



---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"

Reply via email to