Home > Back-end >  Delphi7 tools small problem
Delphi7 tools small problem

Time:09-24

Fill the whole process, function key combination: Ctrl + Shift + c no effect pinyin input method for QQ has set no occupy
Accident) tools used before others, how to solve the Settings

CodePudding user response:

Ctrl + Shift + C functions: automatically complete the class code, for example, you wrote in the declaration section
Type

TMyClass=class
Procedure Test ();
end;

Put the cursor TMyClass of any line, press Ctrl + Shift + C will automatically join the implementation in implementation part code:
Automatically generate the implementation code, usually as follows:

Implementation

{$R *. DFM}

{TMyClass}
Procedure TMyClass. Test;
The begin

end;

End.


You cannot implement reason:
1, no type declarations
2, TMyClass=class
Procedure Test ();
end; The code is not standard

CodePudding user response:

Still have a kind of situation, other software in the system and shielding Ctrl + Shift + C function keys, only out of the software, or shut down Ctrl + Shift + C function set,

CodePudding user response:

To reset the editor Settings

CodePudding user response:

Above all, all have no effect... . Didn't run what software only a computer QQ and 360 computers for the teacher
  • Related