Mark,

> -----Original Message-----
> Here's a few wish list items I'd like to add to Aaron's list:
>
> 1. CTRL-Y yanks text to the windows clipboard.

I would like to vote otherwise:  Ctrl+Y kills the line!

> 2. Support6 CTRL-C/CTRL-M to copy/move a block.

Use Ctrl+K - V, or use drag and drop.  Highlight the word, drag it with the
mouse to where you want to move it.

> 3. Highlight blocks made with CTRL-K/CTRL-B as different
> colour, and LEAVE
> highlighted until an operation is done on them.

Tools / Environmental Options / Editor / Persistent blocks

> 4. Ability to code our own warnings for components, (I put
> this in another
> wishlist on the net somewhere, but thought I'd add it here),
> so that you
> can give end-developers warnings over certain things like
> "Warning: MySecurityComponent1.EnableSecurity is off."

property EnableSecurity: Boolean ... write SetEnableSecurity;


procedure MyComponent.SetEnableSecurity (Value: Boolean);
begin
  FEnableSecurity := Value;
  if not FEnableSecurity then
    ShowMessage ('Warning: MySecurityComponent1.EnableSecurity is off.');
end;


I vote to keep Delphi simple.


Regards,
Dennis.

---------------------------------------------------------------------------
  New Zealand Delphi Users group - Offtopic List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to