Поддержка / Donate
 

WebMoney

Яндекс.Деньги

SMS.Копилка
Деньги@Mail.ru
Rupay
E-gold
PayPal

 

Благодарю за поддержку!

Лента RSS - Новости сайта Новости сайта
Лента RSS - Новости форума Новости форума
Добавить в закладки и поделиться Bookmark and Share

 

Архив исходников

 


Automatic translation

 
English German French
Italian Spanish Portuguese
Greece Japan Chinese
  Korean  

  

 

  Форум  

Delphi FAQ - Часто задаваемые вопросы

| Базы данных | Графика и Игры | Интернет и Сети | Компоненты и Классы | Мультимедиа |
| ОС и Железо | Программа и Интерфейс | Рабочий стол | Синтаксис | Технологии | Файловая система |



Google  
 

Автоматически создать реализацию по объявлению в IDE

Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch

{ 
  If you have Delphi 4 Professional or Client/Server or a newer Version, 
  you can use the key combination Ctrl+Shift+C 
  to have Delphi automatically create the implementation declarations 
  for methods you declare in the interface section. 

  Ab Delphi 4 Prof, Client/Server kann man mit der Strg+Shift+C Tastenkombination 
  automatisch die Implementation Deklaration erstellen fur Methoden, 
  welche man in der Interface Sektion deklariert. 

  So if you add this to the interface section, 
  Wenn man z.B das in die Interface Sektion schreibt, 
}


   procedure YourProcedure(SomeParameter: string);

 { 
  ...Delphi will create the following in the implementation section: 
  ...generiert Delphi automatisch den Code fur die Implementation Sektion: 
}

   procedure TForm1.YourProcedure(SomeParameter: string);
   begin

   end;


 { 
  This also works for class declarations like this: 
  Dies funktioniert z.B auch fur Klassen Deklarationen wie diese: 
}

   type TYourButton = class(TButton)
     property  Height : Integer;
     procedure DoSomething;
   end;



Источник - Проект "Delphi World" © Выпуск 2002 - 2004
Автор проекта: Акулов Николай



   Rambler's Top100             Яндекс цитирования