快捷键能提供很大的方便,大家过来交流!!

解决方案 »

  1.   

    alt + shift + t (交换上下行)
      

  2.   

    F1-F12
    alt + F
    Ctrl + H
    ctrl + {
    ctrl + }
    ctrl + A
    ctrl + B
    ctrl + K
    alt + 1-9
      

  3.   

    1.检测程序中的括号是否匹配 
      把光标移动到需要检测的括号(如大括号{}、方括号[]、圆括号()和尖括号<>)前面,键入快捷键“Ctrl+]”。如果括号匹配正确,光标就跳到匹配的括号处,否则光标不移动,并且机箱喇叭还会发出一声警告声。 
    2.查看一个宏(或变量、函数)的宏定义 
      把光标移动到你想知道的一个宏上,就比如说最常见的DECLARE_MAP_MESSAGE上按一下F12(或右键菜单中的Go To Defition Of …),如果没有建立Browse files,会出现提示对话框,确定,然后就会跳到定义那些东西的地方。 
    3.格式化一段乱七八糟的源代码 
      选中那段源代码,按ATL+F8。 
    4.在编辑状态下发现成员变量或函数不能显示 
      删除该项目扩展名为.ncb文件,重新打开该项目。 
    5.如何整理ClassView视图中大量的类 
      可以在classview 视图中右键新建文件夹(new folder),再把具有相近性质的类拖到对应的文件夹中,使整个视图看上去清晰明了
    .
     
    6.定位预处理指定 
    在源文件中定位光标到对称的#if, #endif,使用Ctrl+K. 
    7.如何添加系统中Lib到当前项目 
      在Project | Settings | Link | Object/library modules:输入Lib名称,不同的Lib之间用空格格开. 
    8.如何添加系统中的头文件(.h)到当前项目. 
      #include <FileName.h>,告诉编译到VC系统目录去找;使用#include "FileName.h",告诉编译在当前目录找. 
    9.如何在Studio使用汇编调试 
      在WorkBench的Debugger状态下按CTRL+F7. 
    10.怎样处理ClassZiard找不到的系统消息 
      如果要在ClassWizard中处理WM_NCHITTEST等系统消息,请在ClassWizard中Class Info页中将Message filter改为Window就有了. 
    11.如何干净的删除一个类 
      先从Workspace中的FileView中删除对应的.h和.cpp文件,再关闭项目,从实际的文件夹中删除对应的.h和.cpp文件与.clw文件。 
    12.如果让控制台应用程序支持mfc类库 
      可以在控制台应用程序中include 来引入mfc库,但是控制台应用程序缺省是单线程的,mfc是多线程的,为解决该矛盾,在project setting->c/c++ 选项,选择code generation,在use run-time library 下拉框中选择debug multithread。 
    13.如何汉化只有可执行代码的.exe 文件 
      在nt 下利用vc open file 以resources方式打开*.exe 文件,直接修改资源文件,然后保存即可。 
      

  4.   

    ctrl + C    ctrl + V........
      

  5.   

    书签: shift+F2
           F2;
      

  6.   

    ctrl+shift+F9  去除程序中所有断点
      

  7.   

    To “鸟牙”
    6.定位预处理指定 
    在源文件中定位光标到对称的#if, #endif,使用Ctrl+K. ->从if定位到endif
    补充:  Ctrl+J 反向定位Ctrl+D  把光标定位到搜索编辑筐内。
    Ctrl+B 查看所有的断点
    Ctrl+Tab 快速切换不同的窗口
      

  8.   

    CreateWindow(lpszClassName,
    lpszTitle,
    /WS_BORDER|WS_MAXIMIZEBOX,
    WS_OVERLAPPEDWINDOW,
    20,
    200,
    //CW_USEDEFAULT,
    CW_USEDEFAULT,
    CW_USEDEFAULT,
    NULL,
    NULL,
    hInstance,
    NULL);当函数的参数提示没有了,应该怎么调试出来?
      

  9.   

    Ctrl + Tab:在已打开的文件中切换显示
      

  10.   

    按住CTRL+ALT 然后输入IP。。 会有意想不到的结果发生
    不试不知道
      

  11.   

    awnucel(中国间谍):什么也没有!!
      

  12.   

    我用的最多的就是“Ctrl+W”和“Ctrl+E”
      

  13.   

    to Aspist(边城浪子)你试过了?
    不是输入字母I和P
    是输入IP地址,随便的IP地址
      

  14.   

    awnucel(中国间谍),你逗我们玩呀?????????????????????????????????
      

  15.   

    Ctrl+shift+space显示函数参数信息
      

  16.   

    clin2y(林子) 真的,很好用的快捷键
      

  17.   

    如果中文输入切换组合键为Ctrl+shift+space,这样的话Ctrl+shift+space就起不到作用,可以在VC中设定吗????
      

  18.   

    alt + f8 : 所选代码格式化
      

  19.   

    ctrl+T  //测试单个对话框,速度快
      

  20.   

    2.查看一个宏(或变量、函数)的宏定义 
      把光标移动到你想知道的一个宏上,就比如说最常见的DECLARE_MAP_MESSAGE上按一下F12(或右键菜单中的Go To Defition Of …),如果没有建立Browse files,会出现提示对话框,确定,然后就会跳到定义那些东西的地方。 
    3.格式化一段乱七八糟的源代码 
      选中那段源代码,按ATL+F8。
    ------------------------
    这两个很好用
    我喜欢
      

  21.   

    问各位个问题,我做了一个模拟HOTKEY控件的程序,可别的部分都还可以,就是在按下ALT+任意键的时候就不行,比如ALT+F我按住ALT后在按F就没响应,我查了下原因,在按ALT后它执行了OnSysKeyDown()命令 ,我再按F就没反映,根本不去执行OnKeyDown()函数
      

  22.   

    Ctrl+Alt+鼠标,选择竖直区域。
      

  23.   

    菜单Help->Keyboard map...
    里面列出了所有的快捷方式!
      

  24.   

    shift + tab(左宿进)有没有右宿进?
      

  25.   

    好 东西  收藏!怎么大家ctrl c  ctrl v 都不说啊 真伤心。
      

  26.   

    移动光标的时候(左,右),按住 Ctrl键。还是问  右宿进    的快捷键
      

  27.   

    问各位个问题,我做了一个模拟HOTKEY控件的程序,可别的部分都还可以,就是在按下ALT+任意键的时候就不行,比如ALT+F我按住ALT后在按F就没响应,我查了下原因,在按ALT后它执行了OnSysKeyDown()命令 ,我再按F就没反映,根本不去执行OnKeyDown()函数
      

  28.   

    centerarea(中央地带) :
    一个贴子要问多少东西呀,这样下去都没法整理了
      

  29.   

    代码艺术:右缩进你直接选中代码再Tab键就可以了。
      

  30.   

    在对话框编辑器中,Ctrl+鼠标点选控件,在对话框中可以连续添加相同类型的控件
      

  31.   

    ctrl + space  是自动完成字符   注意与输入法的冲突,可关掉
    另补充:
    vc的宏,楼上有兄弟说要注释整个代码,简单:
    打开tools -> micro
    你可以看到宏的窗口,选择sample(内置)里面就已经写好了很多
    你可以单击toolbar,然后看到CommentOut,左键按住,拉到你的vc工具栏,又弹出一个图标窗口,选一个图标,那么就出现了,这样你选择一段代码,注释.就非常容易了.
    其他的宏可以自己写,很简单,参照一下原先的例子.
      

  32.   

    "以看到宏的窗口,选择sample(内置)里面就已经写好了很多"
    是用option -> load file 选择的
      

  33.   

    Alt+ F4  关闭VC
    Ctrl+F4  关闭当前打开的文档窗口(VC不会关)
    在对话框编辑器中1。按住 Ctrl 同时用鼠标点选一个控件再拖动,可以 COPY 一个出来
    2。按  Ctrl + t 可以查看对话框设计效果(弹出一个运行时的样子)
    3。按 Ctrl + d  可以编辑  tab 键的顺序
    4。按位 Ctrl  双击一个控件,可以为该控件关联一个变量
    5。直接双击控件,可以添加一个ONCLICK的处理函数
    楼上说的 F7 是编译所有的程序但不执行,  还有 Ctrl + F7  只编译当前的文件
    太多了也,我只是用得时候就记起来了,说也说不全  :)
      

  34.   

    Edit BookNext F2 Moves to the line containing the next book
    Edit BookPrev Shift+F2 Moves to the line containing the previous book
    Edit BookToggle Ctrl+F2 Toggles a book for the current line on and off
    Edit Books          Alt+F2 Edits or navigates books
    Edit BrowseGoToDefinition F12 Displays a symbol definition
    Edit BrowseGoToReference Shift+F12 Displays a symbol reference
    Edit BrowseNext Ctrl+Num + Displays the next symbol definition or reference
    Edit BrowsePopContext Ctrl+Num * Returns to the location preceding the last browse operation
    Edit BrowsePrev Ctrl+Num - Displays the previous symbol definition or reference
    Edit CharLeft Left Arrow Moves the cursor one character to the left
    Edit CharLeftExtend Shift+Left Arrow Extends the selection one character to the left
    Edit CharRight Right Arrow Moves the cursor one character to the right
    Edit CharRightExtend Shift+Right Arrow Extends the selection one character to the right
    Edit CharTranspose Swap characters around the insertion point
    Edit CompleteWord Ctrl+Space Completes the current statement
    Edit ConditionalDown Ctrl+K Finds the next matching preprocessor condition
    Edit ConditionalDownExtend Ctrl+Shift+K Extends the selection to the next matching preprocessor condition
    Edit ConditionalUp Ctrl+J Finds the previous matching preprocessor condition
    Edit ConditionalUpExtend Ctrl+Shift+J Extends the selection to the previous matching preprocessor condition
    Edit Copy Ctrl+C Copies the selection to the Clipboard还是看 VC 的 Keyboard Mapping 吧
      

  35.   

    Ctrl + t        = 察看类型
    shift+ctrl+空格 = 察看函数参数说明
      

  36.   

    ctrl + shift + G 熟悉的人就知道还是有用的……
      

  37.   

    Ctrl + O  :open file
    Ctrl + N  :create file
    Ctrl + S  :save file
    Ctrl + P  :print file
    Ctrl + F7 :complete
    F7        :link
      

  38.   

    look Keyboard Mapping
    it 's so details
      

  39.   

    使用Win98/me操作系统的,连按两下delete+ctrl+shift有意想不到的效果
      

  40.   

    使用Win98/me操作系统的,连按两下delete+ctrl+shift有意想不到的效果
      

  41.   

    还是有受益得。我用alt+F8格式化书写格式!其他用assistant v6.0 for vc6.0挺好。
      

  42.   

    说错了,应该是在VC里连接两下delete+alt+ctrl
      

  43.   

    shilong(银羽·以吻赠剑)什么效果?没有98环境
      

  44.   

    to poweruser(Loading......):没重起过机器? 呵呵
      

  45.   

    设置多行注解应该用什么快捷键???MSDN上找不到。
      

  46.   

    类别       命令                     快捷键       描述
    Add-ins VisualAssistCodeTemplateMenu Insert Code Template
    Add-ins VisualAssistCommentBlock Comment Selection
    Add-ins VisualAssistCommentLine Comment Selection
    Add-ins VisualAssistContextMenu Shift+Application Display Context Menu
    Add-ins VisualAssistDefinitionList Alt+M Goto Method in Current File
    Add-ins VisualAssistEnable/Disable Enable/Disable Visual Assist
    Add-ins VisualAssistFindNextReference Alt+Shift+F3 Find Next by Context
    Add-ins VisualAssistFindPrevReference Find Previous by Context
    Add-ins VisualAssistGotoDefinition Alt+G Goto Declaration or Definition
    Add-ins VisualAssistIfdef Displays a message box
    Add-ins VisualAssistNavigateBack Alt+Left Arrow Back
    Add-ins VisualAssistNavigateForward Alt+Right Arrow Forward
    Add-ins VisualAssistNoOp Toggle Visual Assist
    Add-ins VisualAssistOpenCorrespondingFile Alt+O Open Corresponding .h or .cpp
    Add-ins VisualAssistOpenProjectFile Alt+Shift+O Open Project File
    Add-ins VisualAssistOptionsDialog Visual Assist Options
    Add-ins VisualAssistPasteMenu Ctrl+Shift+V Paste from Multiple Buffers
    Add-ins VisualAssistReparseFile Reparse Current File
    Add-ins VisualAssistSpellCheckSelection Spell Check Selection
    Build Build F7 Builds the project
    Build BuildBatch Builds multiple projects
    Build BuildClean Deletes intermediate and output files (cleans the project)
    Build BuildCompile Ctrl+F7 Compiles the file
    Build BuildConfigurations Edits the project configurations
    Build BuildExecute Ctrl+F5 Executes the program
    Build BuildRebuildAll Rebuilds Active Project and all project dependencies
    Build BuildSetActiveConfiguration Selects the active project and configuration
    Build BuildStop Ctrl+Break Stops the build
    Build BuildToggleBuild Builds the project
    Build DebugAttachToActive Attaches to running process
    Build DebugGo F5 Starts or continues the program
    Build DebugRunToCursor Ctrl+F10 Runs the program to the line containing the cursor
    Build DebugStepInto F11 Steps into the next statement
    Build ToolsProfile Sets Profile options, profiles the program, and displays profile data
    Build ToolsRemoteConnection Edits remote debug connection settings
    Debug ApplyCodeChanges Alt+F10 Applies code changes made to C/C++ source files while debugging
    Debug DebugBreak Stops program execution; breaks into the debugger
    Debug DebugDisableAllBreakpoints Disables all breakpoints
    Debug DebugEnableBreakpoint Ctrl+F9 Enables or disables a breakpoint
    Debug DebugExceptions Edits debug actions taken when an exception occurs
    Debug DebugGo F5 Starts or continues the program
    Debug DebugHexadecimalDisplay Toggles between decimal and hexadecimal format
    Debug DebugMemoryNextFormat Alt+F11 Switches the memory window to the next display format
    Debug DebugMemoryPrevFormat Alt+Shift+F11 Switches the memory window to the previous display format
    Debug DebugModules Shows modules currently loaded
    Debug DebugQuickWatch Shift+F9 Performs immediate evaluation of variables and expressions
    Debug DebugRemoveAllBreakpoints Ctrl+Shift+F9 Removes all breakpoints
    Debug DebugRestart Ctrl+Shift+F5 Restarts the program
    Debug DebugRunToCursor Ctrl+F10 Runs the program to the line containing the cursor
    Debug DebugSetNextStatement Ctrl+Shift+F10 Sets the instruction pointer to the line containing the cursor
    Debug DebugShowNextStatement Alt+Num * Displays the source line for the instruction pointer
    Debug DebugStepInto F11 Steps into the next statement
    Debug DebugStepIntoSpecificFunction Steps into the selected function
    Debug DebugStepOut Shift+F11 Steps out of the current function
    Debug DebugStepOver F10 Steps over the next statement
    Debug DebugStepOverSource Steps over the next source level statement
    Debug DebugStopDebugging Shift+F5 Stops debugging the program
    Debug DebugThreads Sets the debuggee's thread attributes
    Debug DebugToggleBreakpoint F9 Inserts or removes a breakpoint
    Debug DebugToggleMixedMode Ctrl+F11 Switches between the source view and the disassembly view for this instruction
    Debug UpdateImageToggle Applies code changes made to C/C++ source files while debugging
    Diagram AddRelatedTables Adds Related Tables To Diagram
    Diagram Arrange Tables Arrange Tables
    Diagram ArrangeSelection Automatic layout of diagram selection
    Diagram AutosizeSelectedTables Autosize Selected Tables
    Diagram ModifyCustomView Modify Custom View
    Diagram NewTextAnnotation Inserts a new text annotation
    Diagram RecalculatePageBreaks Recalculates diagram page breaks
    Diagram ShowRelationshipLabels Show Relationship Labels
    Diagram TextAnnotationFont Changes the font of a text annotation
    Diagram ViewPageBreaks Shows diagram page breaks
    Edit BookClearAll Ctrl+Shift+F2 Clears all books in the window
    Edit BookDrop(Epsilon) Drops an Epsilon book
    Edit BookDrop1(Brief) Drops Brief book 1
    Edit BookDrop10(Brief) Drops Brief book 10
    Edit BookDrop2(Brief) Drops Brief book 2
    Edit BookDrop3(Brief) Drops Brief book 3
    Edit BookDrop4(Brief) Drops Brief book 4
    Edit BookDrop5(Brief) Drops Brief book 5
    Edit BookDrop6(Brief) Drops Brief book 6
    Edit BookDrop7(Brief) Drops Brief book 7
    Edit BookDrop8(Brief) Drops Brief book 8
    Edit BookDrop9(Brief) Drops Brief book 9
    Edit BookJumpToLast(Epsilon) Moves to the previous Epsilon book
    Edit BookNext F2 Moves to the line containing the next book
    Edit BookPrev Shift+F2 Moves to the line containing the previous book
    Edit BookToggle Ctrl+F2 Toggles a book for the current line on and off
    Edit Books Alt+F2 Edits or navigates books
    Edit BrowseGoToDefinition F12 Displays a symbol definition
    Edit BrowseGoToReference Shift+F12 Displays a symbol reference
    Edit BrowseNext Ctrl+Num + Displays the next symbol definition or reference
    Edit BrowsePopContext Ctrl+Num * Returns to the location preceding the last browse operation
    Edit BrowsePrev Ctrl+Num - Displays the previous symbol definition or reference
    Edit CharLeft Left Arrow Moves the cursor one character to the left
    Edit CharLeftExtend Shift+Left Arrow Extends the selection one character to the left
    Edit CharRight Right Arrow Moves the cursor one character to the right
    Edit CharRightExtend Shift+Right Arrow Extends the selection one character to the right
    Edit CharTranspose Swap characters around the insertion point
    Edit CompleteWord Ctrl+Space Completes the current statement
    Edit ConditionalDown Ctrl+K Finds the next matching preprocessor condition
    Edit ConditionalDownExtend Ctrl+Shift+K Extends the selection to the next matching preprocessor condition
    Edit ConditionalUp Ctrl+J Finds the previous matching preprocessor condition
    Edit ConditionalUpExtend Ctrl+Shift+J Extends the selection to the previous matching preprocessor condition
    Edit Copy Ctrl+C Copies the selection to the Clipboard
    Edit Cut Ctrl+X Cuts the selection and moves it to the Clipboard
    Edit CutAppendNext Adds the next cut text to end of the Clipboard
    Edit CutSelection Cuts the selection and puts it on the Clipboard
    Edit DebugBreakpoints Alt+F9 Edits breakpoints in the program
    Edit Delete Del Deletes the selection
    Edit Delete Column Deletes a column fromthe table
    Edit DeleteBack Backspace Deletes the selection or, if there is no selection, the character to the left of the cursor
      

  47.   

    Edit DeleteBlankLines Deletes the blank lines adjacent to the cursor
    Edit DeleteHorizontalSpace Deletes the spaces and tabs around the cursor
    Edit DeleteRelationshipFromDatabase Marks the selected relationship(s) for deletion
    Edit DeleteTableFromDatabase Marks the selected table(s) for deletion
    Edit DocumentEnd Ctrl+End Moves to the end of the document
    Edit DocumentEndExtend Ctrl+Shift+End Extends the selection to the end of the document
    Edit DocumentStart Ctrl+Home Moves to the beginning of the file
    Edit DocumentStartExtend Ctrl+Shift+Home Extends the selection to the beginning of the file
    Edit EditToggleOvertype Ins Toggles between inserting and replacing text
    Edit End(Brief) Moves to the end of the current line, bottom of the text window, or end of the file
    Edit Find Ctrl+F Finds the specified text
    Edit FindBackwardDlg Opens the Find dialog, searching backward
    Edit FindForwardDlg Opens the Find dialog, searching forward
    Edit FindInFiles Searches for a string in multiple files
    Edit FindNext F3 Finds the next occurrence of the specified text
    Edit FindNextWord Ctrl+F3 Finds the next occurrence of the selected text
    Edit FindPrev Shift+F3 Finds the previous occurrence of the specified text
    Edit FindPrevWord Ctrl+Shift+F3 Finds the previous occurrence of the selected text
    Edit FindRegExpr Finds the next string using regular expressions
    Edit FindRegExprPrev Finds the previous string using regular expressions
    Edit FindRepeat Continues the previous search
    Edit FindReplace Ctrl+H Replaces the specified text with different text
    Edit FindReplaceRegExpr Replaces the specified text with different text, using regular expressions
    Edit FindToggleAllDocs Toggles searching across all open documents
    Edit FindToggleCaseSensitivity Toggles case sensitive matching
    Edit FindToggleMatchWord Toggles whole word matching
    Edit FindToggleRegExpr Toggles regular expression matching
    Edit FindTool Ctrl+D Activates the Find tool
    Edit GoTo Ctrl+G Moves to a specified location
    Edit GoToErrorTag Moves to the line containing the current error or tag
    Edit GoToFirstRow Goes to the first row in the query results
    Edit GoToIndentation Moves to the end of the indentation
    Edit GoToLastRow Goes to the last row in the query results
    Edit GoToMatchBrace Ctrl+] Finds the matching brace
    Edit GoToMatchBraceExtend Ctrl+Shift+] Extends the selection to the matching brace
    Edit GoToNewRow Creates a new row below last row in the query results
    Edit GoToNextErrorTag F4 Moves to the line containing the next error or tag
    Edit GoToNextRow Goes to the next row in the query results
    Edit GoToPrevErrorTag Shift+F4 Moves to the line containing the previous error or tag
    Edit GoToPreviousRow Goes to the previous row in the query results
    Edit GoToRow Goes to the specified row in the query results
    Edit Home Home Moves to either the start of the current line or the start of the text on that line
    Edit Home(Brief) Moves to the start of the current line, top of the text window, or start of the file
    Edit HomeExtend Shift+Home Extends the selection to either the start of the current line or the start of the text on that line
    Edit IndentSelectionToPrev Indents the selected text to line up with the previous line's indention
    Edit IndentToPrev Indents to the position of the next text on the previous line
    Edit Insert Column Inserts a column into the table
    Edit InsertQuoted Inserts the next character literally
    Edit LevelCutToEnd Cuts the text between the cursor and the end of the next bracketed level
    Edit LevelCutToStart Cuts the text between the cursor and the beginning of the previous bracketed level
    Edit LevelDown Finds the end of the next bracket level
    Edit LevelUp Finds the beginning of the previous bracket level
    Edit LineCut Ctrl+L Deletes the selected lines and puts them on the Clipboard
    Edit LineDelete Ctrl+Shift+L Deletes the selected line
    Edit LineDeleteToEnd Deletes to the end of the current line
    Edit LineDeleteToStart Deletes to the beginning of the current line
    Edit LineDown Down Arrow Moves the cursor down one line
    Edit LineDownExtend Shift+Down Arrow Extends the selection down one line
    Edit LineEnd End Moves to the end of the current line
    Edit LineEndExtend Shift+End Extends the selection to the end of the current line
    Edit LineIndent Indents the selected text right one tab stop
    Edit LineOpenAbove Opens a new line above the cursor
    Edit LineOpenBelow Opens a new line below the cursor
    Edit LineStart Moves to the start of the current line
    Edit LineTranspose Alt+Shift+T Swaps current and previous lines
    Edit LineUnindent Indents the selected text left one tab stop
    Edit LineUp Up Arrow Moves the cursor up one line
    Edit LineUpExtend Shift+Up Arrow Extends the selection up one line
    Edit ListMembers Ctrl+Alt+T Brings up the completion list box
    Edit PageDown Page Down Moves the cursor down one page
    Edit PageDownExtend Shift+Page Down Extends the selection down one page
    Edit PageUp Page Up Moves the cursor up one page
    Edit PageUpExtend Shift+Page Up Extends the selection up one page
    Edit ParaDown Moves to the beginning of the next paragraph
      

  48.   


    Edit ParaUp Moves to the beginning of the previous paragraph
    Edit ParameterInfo Ctrl+Shift+Space Provides help with parameters of functions
    Edit Paste Ctrl+V Inserts the Clipboard contents at the insertion point
    Edit Redo Ctrl+Y Redoes the previously undone action
    Edit RedoChanges Redoes the last action, ignoring movement commands
    Edit RemoveFromDiagram Removes the selected table or join line from the query
    Edit RemoveTableFromDiagram Removes the selected table(s) from the diagram
    Edit SearchIncremental Ctrl+I Starts an incremental search forward
    Edit SearchIncrementalBack Ctrl+Shift+I Starts an incremental search backward
    Edit SelectAll Ctrl+A Selects the entire document
    Edit SelectAllColumns Selects all columns in the table
    Edit SelectChar F8 Starts character selection mode
    Edit SelectCharInclusive Starts inclusive character selection mode
    Edit SelectColumn Ctrl+Shift+F8 Selects a columnar block of text
    Edit SelectHighlight Highlights the region between the cursor and the 
    Edit SelectLine Ctrl+F8 Selects lines of text
    Edit SelectPara Selects the current paragraph
    Edit SelectSwapAnchor Swaps the anchor and the cursor in a selection
    Edit SelectionFormat Alt+F8 Formats the selection using the smart indent settings
    Edit SelectionLowercase Ctrl+U Makes the selection all lowercase
    Edit SelectionTabify Replaces spaces with tabs in the selection
    Edit SelectionUntabify Replaces tabs with spaces in the selection
    Edit SelectionUppercase Ctrl+Shift+U Makes the selection all uppercase
    Edit SentenceCut Alt+Shift+L Deletes the remainder of the sentence
    Edit SentenceLeft Moves to the beginning of the previous sentence
    Edit SentenceRight Moves to the beginning of the next sentence
    Edit SetPrimaryKey Creates a primary key on the selected columns
    Edit SetRepeatCount Sets the numeric argument or repeat count for the next command
    Edit SetRepeatCount0 Sets the numeric argument or repeat count to 0
    Edit SetRepeatCount1 Sets the numeric argument or repeat count to 1
    Edit SetRepeatCount2 Sets the numeric argument or repeat count to 2
    Edit SetRepeatCount3 Sets the numeric argument or repeat count to 3
    Edit SetRepeatCount4 Sets the numeric argument or repeat count to 4
    Edit SetRepeatCount5 Sets the numeric argument or repeat count to 5
    Edit SetRepeatCount6 Sets the numeric argument or repeat count to 6
    Edit SetRepeatCount7 Sets the numeric argument or repeat count to 7
    Edit SetRepeatCount8 Sets the numeric argument or repeat count to 8
    Edit SetRepeatCount9 Sets the numeric argument or repeat count to 9
    Edit ToggleViewWhitespace Ctrl+Shift+8 Shows or hides tab characters
    Edit TypeInfo Ctrl+T Provides the syntax for a variable, function or method selected in the editor
    Edit Undo Ctrl+Z Undoes the last action
    Edit UndoChanges Undoes the last action, ignoring movement commands
    Edit WBAddNewMember Add Member Function (WizardBar)
    Edit WBCreateNewVirtualFunction Add Virtual Function (Wizard Bar)
    Edit WBCreateNewWindowsMessageHandler Add Windows Message Handler (Wizard Bar)
    Edit WBDefaultAction Performs the current default action for the WizardBar
    Edit WBGoToClassDefinition Goes to selected class definition (WizardBar)
    Edit WBGoToMember Goes to selected function definition/implementation (WizardBar)
    Edit WBGoToMemberDeclaration Goes to selected function declaration (Wizard Bar)
    Edit WBGoToNext Goes to next function in current file (WizardBar)
    Edit WBGoToPrevious Goes to previous function in current file (WizardBar)
    Edit WBHelp Brings up help for the WizardBar
    Edit WBOpenInclude Opens selected include file (Wizard Bar)
    Edit WindowEnd Moves to the bottom of the text window
    Edit WindowLeftEdge Moves to the left edge of the text window
    Edit WindowRightEdge Moves to the right edge of the text window
    Edit WindowScrollDown Ctrl+Up Arrow Scrolls the file contents down one line
    Edit WindowScrollLeft Scrolls the window to the left
    Edit WindowScrollRight Scrolls the window to the right
    Edit WindowScrollToBottom Scrolls the line to the bottom of the window
    Edit WindowScrollToCenter Scrolls the line to the center of the window
    Edit WindowScrollToTop Scrolls the line to the top of the window
    Edit WindowScrollUp Ctrl+Down Arrow Scrolls the file contents up one line
    Edit WindowStart Moves to the top of the text window
    Edit WordCapitalize Makes the first character uppercase
    Edit WordDeleteToEnd Ctrl+Del Deletes a word to the right
    Edit WordDeleteToStart Ctrl+Backspace Deletes a word to the left
    Edit WordLeft Ctrl+Left Arrow Moves back one word
    Edit WordLeftExtend Ctrl+Shift+Left Arrow Extends the selection back one word
      

  49.   

    鸟人,比我还凶我只是抛砖一块,说明一下 VC 的 HELP 中有KEYBOARY说明你竟然COPY了这么多上来
      

  50.   

    我说一个:
    编译,调试那些就不说了……
    CTRL+E : 把光标置于“{”或“}”前后,按此快捷键可以跳转到“{”或“}”的另一半边。
      

  51.   

    ^_^,我推荐最酷的一个:
    Alt+F4    关闭呀呼~~~
      

  52.   

    最常用的ctrl c ,ctrl v,ctrl w