我现在刚刚学习vc, 看人家使用快捷键心里想学,那位师哥师姐告知小弟,小弟感激,并以分相送,像Ctrl+N这样的就不用告诉我了.明天给分.

解决方案 »

  1.   

    你去看看vcmfc的专栏。有好几篇文章都是。
      

  2.   

    ctrl+}对齐大括号
    ctrl+tab回到刚才那一处
      

  3.   

    VC++6.0
    点击菜单
    Help---Keyboard Map
    什么都有了。
      

  4.   

    alt + F8,   把选中的文本对齐。
    ctrl + U    把选中的文本全部改为小写
    alt + 鼠标左键的   可以选中列块。
    ctrl + 鼠标左键拖动    可以制选中文本到指定的地方在定制对话框 的时候,
       ctrl + D ,可以查看 tab键的移动顺序。
       ctrl + T, 可以测试对话框 希望高手们有好用的快捷銉, 也写出来,大家供享
      

  5.   

    Ctrl+W:打开类向导
    Alt+F7:打开属性页
    按住Ctrl后双击控件:为控件添加一个变量打开tools->customize->keyboard
    可高设定每个快捷键
      

  6.   

    ctrl+f4:关闭vc  :)不用给分了
      

  7.   


    Undo the last editing action (Undo). CTRL+Z or ALT+BACKSPACE 
    Correctly indent the selected lines of code based on the surrounding lines of code. ALT+F8 
    Swap the current and previous lines. ALT+SHIFT+T 
    Delete the selection or, if there is no selection, the character to the left of the cursor. BACKSPACE 
    Find the matching brace. CTRL+] 
    Delete the word to the left of the insertion point. CTRL+BACKSPACE 
    Copy the selected text to the Clipboard. CTRL+C or CTRL+INS 
    Delete the word to the right of the insertion point. CTRL+DELETE 
    Move the cursor to the end of the list. CTRL+END 
    Display the Find window. If there is no current Find criteria, places the word under your cursor in the Find box. CTRL+F 
    Find the next occurrence of the current word or selection. CTRL+F3 
    Display the Find window where you can replace the specified text. CTRL+H 
    Move the cursor to the beginning of the list. CTRL+HOME 
    Display Quick Info. CTRL+I 
    Display list of members. CTRL+J 
    Extend the selection to the matching brace. CTRL+SHIFT+] 
    Extend the selection to the end of the document. CTRL+SHIFT+END 
    Find the previous occurrence of the specified text. CTRL+SHIFT+F3 
    Extend the selection to the beginning of the file. CTRL+SHIFT+HOME 
    Display Parameter Info. CTRL+SHIFT+I 
    Extend the selection one word to the left. CTRL+SHIFT+LEFT ARROW 
    Extend the selection one word to the right. CTRL+SHIFT+RIGHT ARROW 
    Swap the current and next words or transposes words around operators, for example transposes apple = fruit to fruit = apple. CTRL+SHIFT+T 
    Change the selected text to uppercase characters. CTRL+SHIFT+U  
    Select the current word. CTRL+SHIFT+W 
    Fill in the rest of the word you are typing once you have entered enough characters for the editor to identify the word you want. CTRL+SPACEBAR 
    Swap the characters around the insertion point. CTRL+T 
    Change the selected text to lowercase characters. CTRL+U 
    Scroll the text up one line. CTRL+UP ARROW 
    Insert the Clipboard contents at the insertion point. CTRL+V or SHIFT+INSERT 
    Cut the selected text to the Clipboard. CTRL+X or SHIFT+DELETE 
    Delete the selected lines and place them on the Clipboard (Cut). CTRL+M 
    Restore the previously undone action (Redo). CTRL+Y or CTRL+SHIFT+Z or ALT+SHIFT+BACKSPACE 
    Delete the selected text without placing it on the Clipboard. DELETE 
    Display next overloaded function when the Parameter Info window is displayed.
    Move the cursor down the list, one entry at a time, when the Member List is displayed.
     DOWN ARROW 
    Display previously overloaded function when the Parameter Info window is displayed.
    Move the cursor up the list, one entry at a time, when the Member List is displayed.
     UP ARROW 
    Display context-sensitive documentation for functions, statements, methods, properties, or events. F1 
    Display help on the Text Editor window. CTRL+F1 
    Find next occurrence of text specified in the Find window.  F3 
    Display or hide a shortcut. Hold down CTRL and press KH 
    Turn the books for the current line on and off. Hold down CTRL and press KK 
    Remove all books. Hold down CTRL and press KL 
    Move the insertion point to the beginning of the next book. Hold down CTRL and press KN 
    Move the insertion point to the beginning of the previous book. Hold down CTRL and press KP 
    Change between box selection and stream selection mode. Hold down CTRL and press RS 
    Show white space. Display and hide spaces and tab s. Hold down CTRL and press RW 
    Toggle between inserting and replacing text. INSERT 
    Extend the selection down one line. SHIFT+DOWN ARROW 
    Extend the selection up one line. SHIFT+UP ARROW 
    Find previous occurrence of the text specified in the Find window. SHIFT+F3 
    Extend the selection to the start of the current line. SHIFT+HOME 
    Extend the selection to the end of the current line. SHIFT+END 
    Extend your selection one character to the left. SHIFT+LEFT ARROW 
    Extend your selection one character to the right. SHIFT+RIGHT ARROW 
    Extend the selection down one page.  SHIFT+PAGE DOWN 
    Extend the selection up one page. SHIFT+PAGE UP 
    Indent the selected text one tab stop to the right. TAB 
    Indents the selected text one tab stop to the left. SHIFT+TAB 
      

  8.   

    调试快捷键
    isplay documentation for the active window. F1 
    Display a system menu for the application window. ALT+SPACEBAR 
    Add and remove breakpoints on the current lines. F9 
    Clear all breakpoints. CTRL+SHIFT+F9 
    Disable breakpoint. CTRL+F9 
    Display Auto window and move cursor into it. CTRL+ALT+A 
    Display Breakpoints dialog box. CTRL+B  
    Display Call Stack window and move cursor into it. CTRL+ALT+C 
    Display Immediate window and move cursor into it. Not available if you are in the Text Editor window. CTRL+ALT+I 
    Display Locals window and move cursor into it. CTRL+ALT+L 
    Display Running Document window and move cursor into it. CTRL+ALT+R 
    Adds a watch on the currently selected word. SHIFT+F9 
    Display the next statement. ALT+* on the NUM pad 
    Display the shortcut menu. SHIFT+F10 
    Display Threads window and move cursor into it. CTRL+ALT+H 
    Display Watch window and move cursor into it. CTRL+ALT+W 
    End debugging session. SHIFT+F5 
    Execute code one statement at a time, following execution into function calls (Step Into). F11 
    Execute the next line of code but not follow execution through any function calls (Step Over). F10 
    Execute the remaining lines of a function in which the current execution point lies (Step Out). SHIFT+F11 
    Restart a debugging session. CTRL+SHIFT+F5 
    Resume execution of your code from the current statement to the selected statement (Run to Cursor). CTRL+F10 
    Run the application..  F5 
    Run the code without invoking the debugger (Start without Debugging). CTRL+F5 
    Set the next statement. CTRL+SHIFT+F10 
    Stop execution (Break). CTRL+BREAK 
      

  9.   

    Ctrl+ K :将光标由#if 定位到#endif
    Ctrl+ ] :匹配定位,()、{}、[]、<> 均可Help/Tip of the Day...中的信息对于初学者很有帮助
      

  10.   

    Help---Keyboard Map
    什么都有了。