我是一个VC的初学者,请问高手VC 的常用快捷键有那些?, 在线等待!只有22分了!(22分)

  • 主题发起人 meng_1226
  • 开始时间
M

meng_1226

Unregistered / Unconfirmed
GUEST, unregistred user!
我是一个VC的初学者,请问高手VC 的常用快捷键有那些?, 在线等待!
 
所有快捷键都可以由你自己设置的。
 
F7创建 ,Ctrl+F7编译,Ctrl+F5编译运行,Ctrl+Break停止创建.
F5调试.Ctrl+Shift+F5重新调试.F11单步调试.Shift+F11退出单步调试,Alt+F10调试过程中修改的代码生效.
Ctrl+F9设置断点.Ctrl+Shift+F9删除所有断点.Ctrl+F10运行到光标位置
Ctrl+F2设置标签.F2下一个标签.F3查找下一个.Shift+F3查找上一个.F4下一个错误.Shift+F4上一个错误
Ctrl+Shift+Space 参数信息.Ctrl+Space 参数补全(把输入法的快捷键关闭).
Ctrl+F查找,Ctrl+G到某行, Ctrl+H替换,Ctrl+U大写换小写,Ctrl+Alt+U小写换大写.
Ctrl+R 插入资源.Ctrl+1 插入对话框,Ctrl+2 插入菜单,Ctrl+3插入光标,Ctrl+4插入图标,Ctrl+5插入位图......
Ctrl+w 类向导.
复制粘贴.Ctrl+c = Ctrl+Insert Ctrl+v = Shift+Insert Ctrl+x = Shift+Delete
大概就这么多.都是默认的快捷键 .
其他的都可以自己设置.
推荐用Visual assist这个工具.
另外用两个有用的宏.CommentOut整段注释 和AddFunctionDescription添加方法描述.
 
jj_m, 佩服
 
不好意思,没整理。
===========================
主  题:悬赏VC的快捷键
作  者:eion
所属论坛:Visual C++
问题点数:100
回复次数:56
发表时间:2002-1-17 15:17:55


为了大家方便使用VC,现贡献100分,一条一分,先来先领赏,多多益善,现先列举几个

CTRL+空格 ————自动填充变量或函数【注意关闭中英文输入法的切换】
CTRL+SHIFT+空格——显示函数参数
CTRL+TAB ————子窗口之间切换
F9 —————————断点
F10 ————————单步执行【跳过函数】
F11 ————————单步执行【进入函数】
CTRL+F5 ——————运行
F5 ———————— 调试运行

回复贴子:
回复人: tony1978(突击召唤师) (2002-1-17 15:19:08) 得0分
Alt+F8自动美化代码
回复人: flounder(比目鱼) (2002-1-17 15:19:31) 得0分
Ctrl+Shift+up arrow WBGoToPrevious Moves to the previous function in the current file.
Ctrl+Shift+down arrow WBGoToNext Moves to the next function in the current file.
Ctrl+Shift+G FileGoTo (built-in) If the cursor is over a filename, opens that file. Usually you move the cursor up to an #include line and then
use this command.
Ctrl+Shift+H WBOpenInclude Brings up a dialog listing all headers #include'd in the current file. Select a header and it will be opened.
Ctrl+I SearchIncremental (built-in) begin
s an incremental search. Press these keys and then
start typing the text to search for. The caret will move through the file as you type. Hit Enter to leave search mode. You can then
use the other search keys (like F3) to continue searching for the same text.
Ctrl+Shift+F7 BuildRebuildAll Rebuilds all files in the current project.
Ctrl+F3 FindNextWord (built-in) Finds the next occurrence of the word that the caret is currently over.
Ctrl+Shift+F3 FindPrevWord (built-in) Same as Ctrl+F3, but searches backwards.
Alt+F7 ProjectSettings (built-in) Opens the project settings dialog.
Alt+Num * DebugShowNextStatement (built-in) Moves the caret to the next statement to be executed (only when broken in debug mode).
Shift+Num * DebugShowNextStatement I add this key mapping because it's possible to type with one hand, while the previous one isn't. Yes, I'm lazy. :)
Ctrl+Shift+F9 DebugRemoveAllBreakpoints (built-in) Deletes all breakpoints.
Ctrl+Alt+Shift+F9 DebugDisableAllBreakpoints Disables all breakpoints.
Ctrl+M CheckMnemonicKeys (built-in) Checks for duplicate shortcut keys in a dialog or menu.

Other Time-Savers
Key

Command

Description
Ctrl+Enter LineOpenBelow Opens a blank line below the current line and moves the caret to the new line.
Ctrl+Shift+F8 SelectColumn (built-in) begin
s a selection - move the caret to select columns of text. Easier than Alt-dragging.
Ctrl+Shift+S FileSaveAll Saves all open files.
Alt+F8 SelectionFormat (built-in) Formats the selected text according to your indentation preferences. Great for when you cut &
paste code out of MSDN and the code loses its indentation.
Ctrl+Alt+up arrow LevelUp Moves to the previous occurrence of a start of a block (for instance, the next left brace).
Ctrl+Alt+down arrow LevelDown Moves to the next occurrence of an end of a block (for instance, the next right brace).
Ctrl+Shift+X CutAppendNext Press these keys right before a cut (Ctrl+X) to append the cut text to the end of the clipboard.
Ctrl+E GoToMatchBrace (built-in) If the caret is over a parenthesis, bracket, or brace, moves the caret to the matching character.
Ctrl+Shift+E GoToMatchBraceExtend (built-in) Same as Ctrl+E, but selects the text between the matching characters as well.
Ctrl+Shift+T WindowScrollToTop Scrolls the window so the current line is at the top of the window.
Ctrl+Shift+C WindowScrollToCenter Scrolls the window so the current line is at the center of the window.
Ctrl+Shift+B WindowScrollToBottom Scrolls the window so the current line is at the bottom of the window.
Ctrl+J ConditionalUp (built-in) Moves back to an enclosing #if.
Ctrl+K ConditionalDown (built-in) Moves forward to an enclosing #else
or #endif.
Ctrl+Alt+S WindowSplitHorizontal Splits a text editor window into two panes (with the split running horizontally).
Alt+Up arrow WindowSwitchPaneUp Moves one pane up in a split window.
Alt+Down arrow WindowSwitchPaneDown Moves one panedo
wn in a split window
Alt+Left arrow WindowSwitchPaneLeft Moves one pane left in a split window
Alt+Right arrow WindowSwitchPaneRight Moves one pane right in a split window

回复人: No9(华龙) (2002-1-17 15:20:31) 得0分
好注意!
Ctrl+W-------------类向导
Ctrl+N-------新建程序向导
容我在多找一些来!
回复人: flounder(比目鱼) (2002-1-17 15:21:44) 得0分
help-》keybord map
去看吧
回复人: eion(电离子) (2002-1-17 15:22:02) 得0分
照顾English比较弱的,尽量用中文解释,而且尽可能工整一些
回复人: shenyc(shenyc) (2002-1-17 15:24:05) 得0分
ALT+LeftArrow=>Code auto complate
defined by youself
回复人: firehorizon(格物致志) (2002-1-17 15:32:54) 得0分
关注

回复人: flounder(比目鱼) (2002-1-17 15:36:02) 得0分
Ctrl+I——查找
Alt+f7 ——Setting
Alt+F9——编辑断点
回复人: eion(电离子) (2002-1-17 15:37:45) 得0分
F2 ————移动到标记
CTRL + F2 ————添加/删除 标记
ALT + F2 ———— 标记列表

回复人: eion(电离子) (2002-1-17 15:38:06) 得0分
CTRL + G ————到……行
回复人: flounder(比目鱼) (2002-1-17 15:39:51) 得0分
Ctrl+Shift+G 打开文件
回复人: wuchuncai(无蠢材) (2002-1-17 15:43:49) 得0分
ctrl+shift+f9 清除所有断点。
f1 帮助
回复人: wuchuncai(无蠢材) (2002-1-17 15:44:48) 得0分
f3 查找下一个
回复人: ccnuxjg(钢铁就是这样炼成的!) (2002-1-17 15:49:31) 得0分
Shift+f5 : 中断调试
CTRL+SHIFT+f8: 列拷贝模式
Ctrl+f3: 查找相同字符
Ctrl+W: 类向导
Home:行首
End:行尾
回复人: Iamcoming(我来也) (2002-1-17 15:54:05) 得0分
F12找到变量、函数的定义体
Alt+F12找到变量、函数的所有定义体和引用位置。

回复人: kingtsui(老农民) (2002-1-17 16:14:06) 得0分
F4, 当你编译后切换到下一个Warning/Error处,如果是查找则切换到下一个出现的地方
回复人: kingtsui(老农民) (2002-1-17 16:16:53) 得0分
Ctrl + } 在有{或}的行, 缺换到它对应的}或{处,用处极大
回复人: lj9852(老实狼) (2002-1-17 16:23:16) 得0分
做个记号先
回复人: kjijian(!魔法师) (2002-1-17 16:31:25) 得0分
自己查看VC菜单后面的,应该有吧,
回复人: a_ray1(罗嗦) (2002-1-17 16:41:24) 得0分
upup
回复人: eion(电离子) (2002-1-17 17:27:49) 得0分
CTRL + F ————查找
CTRL + H ————替换

回复人: eion(电离子) (2002-1-17 17:36:27) 得0分
CTRL+?NUM * ———— 回到上次浏览处【相对于goto define】
回复人: chengyumao(其实还是那只猫) (2002-1-17 17:39:17) 得0分
gzgz
回复人: mfs(魔法师) (2002-1-17 18:08:09) 得0分
ctrl+[
找匹配的括号
回复人: sunnyWind() (2002-1-17 22:11:57) 得0分
alt+f8 自动排列选定文本的格式
alt+ctrl+T 自动显示api或其它
回复人: mahongxi(烤鸡翅膀)(我是编程机器...) (2002-1-17 22:50:08) 得0分
其实经常用的不多:
Ctrl + Alt + T
Ctrl + T
Ctrl + W
Ctrl + D
Ctrl + Q[=Ctrl + Space自定义的]
......
======
回复人: mahongxi(烤鸡翅膀)(我是编程机器...) (2002-1-17 22:51:52) 得0分
F1,F2,F3,F4,F5,F7,F9,F10,F11,
Alt + 0..8

回复人: iconlee() (2002-1-17 22:53:14) 得0分
收藏
回复人: patient(北京病人) (2002-1-17 22:58:06) 得0分
ctrl shift u/ctrl u:变换大小写文本
回复人: cnss(风) (2002-1-17 23:55:56) 得0分
看看
回复人: eion(电离子) (2002-1-18 8:49:56) 得0分
好像不是很多?
为什么响应不太强?

希望大家把中文用法写上去,否则……………………

回复人: liuqiao_lq(坐看云起时) (2002-1-18 8:50:46) 得0分
upp
回复人: zero1977(ZERO) (2002-1-18 9:07:33) 得0分
shift + tab 选择的代码块左移一个tab
tab 选择的代码块右移一个tab

回复人: asdmusic8(asdmusic8) (2002-1-18 9:08:17) 得0分
有没有标记某一块,对块移动的
回复人: gust(小叶) (2002-1-18 9:12:42) 得0分
Ctrl+Shift+} 选中匹配括号中的所用内容,用来拷贝函数体很有用;
另外自定义功能也很有用,因为有些快捷键与中文输入法或其它软件有冲突,定义后即能符合自己的习惯,又能避免冲突,要注意在定义时避免与其它VC快捷键重复,会有提示的。
回复人: robothn(雷鸟) (2002-1-18 9:53:39) 得0分
Ctrl - F4 // 关闭当前文件/视图;
Alt - F4 // 关闭程序;

回复人: threads() (2002-1-18 9:56:11) 得0分
Alt+ 0 2 3 4 5 6 7 8 Enter 呵呵
回复人: renren6250(刀客) (2002-1-18 10:01:12) 得0分
记号
回复人: flounder(比目鱼) (2002-1-18 10:14:46) 得0分
按住Alt在用鼠标选可以选一个特定的块
回复人: threads() (2002-1-18 10:16:40) 得0分
Ctrl+Shift+L linedelete
回复人: juqiang(巫山云雨方枪枪) (2002-1-18 10:32:40) 得0分
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
Image Image3dRectangleTool Draws a 3-D rectangle with the selected line width
Image ImageAdjustColors Selects a new drawing color using the Color dialog
Image ImageAirbrushTool A Draws using an airbrush with the selected size
Image ImageBrushLarger + Increases the brush size by one pixel in each direction
Image ImageBrushOutlineTool Shift+O Outlines the brush or selection with the current drawing color
Image ImageBrushPixel . Sets the brush size to one pixel
Image ImageBrushSmaller - Reduces the brush size by one pixel in each direction
Image ImageBrushTool D Draws using a brush with the selected shape and size
Image ImageColorNext ] Changes the drawing color to the next palette color
Image ImageColorPrev [ Changes the drawing color to the previous palette color
Image ImageColorSelectTool , Adopts a color from the image for drawing
Image ImageCurveTool Draws a spline curve with the selected shape and size
Image ImageDeleteDevice Deletes the image for the selected display device
Image ImageEllipseTool E Draws an ellipse with the selected line width
Image ImageEraseColorNext } Changes the erase color to the next palette color
Image ImageEraseColorPrev { Changes the erase color to the previous palette color
Image ImageEraseTool Shift+P Erases a portion of the image
Image ImageFillTool F Fills an area with the current drawing color
Image ImageFilledEllipseTool Shift+E Draws a filled ellipse
Image ImageFilledRectangleTool Shift+R Draws a filled rectangle
Image ImageFilledRoundRectTool Shift+N Draws a filled round rectangle
Image ImageFlipHorizontal X Flips the image or selection horizontally
Image ImageFlipVertical Y Flips the image or selection vertically
Image ImageGridSettings Sets the grid settings for image editing
Image ImageInvertColors Inverts the colors of the image or selection
Image ImageLineTool L Draws a straight line with the selected shape and size
Image ImageLoadPalette Loads palette colors previously saved to a file
Image ImageMagnify M Changes to the highest magnification for the current view
Image ImageMagnifyTool Shift+M Changes the magnification for the current view
Image ImageNewDevice Ins Creates an image for a different display device
Image ImageOpenDevice Selects the image for a different display device
Image ImageOutlinedEllipseTool Ctrl+Shift+E Draws a filled ellipse with an outline
Image ImageOutlinedRectangleTool Ctrl+Shift+R Draws a filled rectangle with an outline
Image ImageOutlinedRoundRectTool Ctrl+Shift+N Draws a filled round rectangle with an outline
Image ImagePencilTool P Draws using a single-pixel pencil
Image ImagePickupBrush Ctrl+B Creates a custom brush from the selection
Image ImageRectSelectTool S Selects a rectangular portion of the image to move, copy, or edit
Image ImageRectangleTool R Draws a rectangle with the selected line width
Image ImageRegionSelectTool Selects an irregular region of the image to move, copy, or edit
Image ImageRotate90 Z Rotates the image or selection 90 degrees
Image ImageRoundRectTool N Draws a round rectangle with the selected line width
Image ImageSavePalette Saves the palette colors to a file
Image ImageSetHotspotTool Changes the hotspot of the cursor
Image ImageTextTool T Draws text
Image ImageToggleGrid G Toggles the grid on and off
Image ImageToggleOpaque O Makes the current selection either opaque or transparent
Image ImageToggleTileGrid Ctrl+G Toggles the tile grid on and off
Image ImageToggleToolbarEditor Makes the toolbar editor available for use on the current bitmap
Image ImageWindowRectangleTool Draws a 3-D window border rectangle
Image ImageZoomIn > Increases the magnification for the current view
Image ImageZoomOut < Reduces the magnification of the current view
Query AddToOutput Adds selected columns to query output
Query ChangeQueryDelete Creates a Delete query
Query ChangeQueryInsert Creates an Insert query
Query ChangeQueryInsertValues Creates an Insert Values query
Query ChangeQueryMakeTable Creates a Make Table query
Query ChangeQuerySelect Creates a Select query
Query ChangeQueryUpdate Creates an Update query
Query ClearResults Clears the results of this query
Query GroupBy Adds the GroupBy option to the selected column
Query RemoveFilter Removes the filter and shows all rows
Query RowsFromTableA Selects all rows from <TableA>
Query RowsFromTableB Selects all rows from <TableB>
Query SortAscending Sorts the data in ascending order
Query SortDescending Sorts the data in descending order
Query Synchronize SQL Synchronize SQL Query
Query VerifySQLSyntax Verify the query's SQL syntax against the database without running the query
WizardBar WBActionButtonActive Activates the WizardBar
WizardBar WBAddNewMember Add Member Function (WizardBar)
WizardBar WBClassComboActive Activates the WizardBar
WizardBar WBCreateNewVirtualFunction Add Virtual Function (Wizard Bar)
WizardBar WBCreateNewWindowsMessageHandler Add Windows Message Handler (Wizard Bar)
WizardBar WBDefaultAction Performs the current default action for the WizardBar
WizardBar WBFilterComboActive Activates the WizardBar
WizardBar WBGoToClassDefinition Goes to selected class definition (WizardBar)
WizardBar WBGoToMember Goes to selected function definition/implementation (WizardBar)
WizardBar WBGoToMemberDeclaration Goes to selected function declaration (Wizard Bar)
WizardBar WBGoToNext Goes to next function in current file (WizardBar)
WizardBar WBGoToPrevious Goes to previous function in current file (WizardBar)
WizardBar WBHelp Brings up help for the WizardBar
WizardBar WBMembersComboActive Activates the WizardBar
WizardBar WBOpenInclude Opens selected include file (Wizard Bar)
帮助 HelpAbout
帮助 HelpKeyboard
帮助 HelpMOWBestOfWeb Opens the Best of the Web page
帮助 HelpMOWDevOnly Opens the Developer products home page
帮助 HelpMOWFAQ Opens the Developer Studio 97 FAQ page
帮助 HelpMOWFeedback Opens the Developer products feedback page
帮助 HelpMOWFreeStuff Opens the Developer Studio 97 free stuff page
帮助 HelpMOWMSHome Opens the Microsoft home page
帮助 HelpMOWOnlineSupport Opens the Microsoft online support page
帮助 HelpMOWProductNews Opens the Developer Studio 97 product news page
帮助 HelpMOWSearchWeb Opens the search page
帮助 HelpMOWWebTutorial Opens the Web Tutorial page
帮助 HelpSystemContents Displays the table of contents for the onlinedo
cumentation
帮助 HelpSystemIndex
帮助 HelpSystemSearch
帮助 HelpTechnicalSupport
帮助 HelpTipOfTheDay
帮助 HelpToggleExtensionHelp
编辑 BookmarkClearAll Ctrl+Shift+F2 Clears all bookmarks in the window
编辑 BookmarkDrop(Epsilon) Drops an Epsilon bookmark
编辑 BookmarkDrop1(Brief) Drops Brief bookmark 1
编辑 BookmarkDrop10(Brief) Drops Brief bookmark 10
编辑 BookmarkDrop2(Brief) Drops Brief bookmark 2
编辑 BookmarkDrop3(Brief) Drops Brief bookmark 3
编辑 BookmarkDrop4(Brief) Drops Brief bookmark 4
编辑 BookmarkDrop5(Brief) Drops Brief bookmark 5
编辑 BookmarkDrop6(Brief) Drops Brief bookmark 6
编辑 BookmarkDrop7(Brief) Drops Brief bookmark 7
编辑 BookmarkDrop8(Brief) Drops Brief bookmark 8
编辑 BookmarkDrop9(Brief) Drops Brief bookmark 9
编辑 BookmarkJumpToLast(Epsilon) Moves to the previous Epsilon bookmark
编辑 BookmarkNext F2 Moves to the line containing the next bookmark
编辑 BookmarkPrev Shift+F2 Moves to the line containing the previous bookmark
编辑 BookmarkToggle Ctrl+F2 Toggles a bookmark for the current line on and off
编辑 Bookmarks Alt+F2
编辑 BrowseGoToDefinition F12 Displays a symbol definition
编辑 BrowseGoToReference Shift+F12 Displays a symbol reference
编辑 BrowseNext Ctrl+Num + Displays the next symbol definition or reference
编辑 BrowsePopContext Ctrl+Num * Returns to the location preceding the last browse operation
编辑 BrowsePrev Ctrl+Num - Displays the previous symbol definition or reference
编辑 CharLeft Left Arrow Moves the cursor one character to the left
编辑 CharLeftExtend Shift+Left Arrow Extends the selection one character to the left
编辑 CharRight Right Arrow Moves the cursor one character to the right
编辑 CharRightExtend Shift+Right Arrow Extends the selection one character to the right
编辑 CharTranspose Swap characters around the insertion point
编辑 CompleteWord Ctrl+Space Completes the current statement
编辑 ConditionalDown Ctrl+K Finds the next matching preprocessor condition
编辑 ConditionalDownExtend Ctrl+Shift+K Extends the selection to the next matching preprocessor condition
编辑 ConditionalUp Ctrl+J Finds the previous matching preprocessor condition
编辑 ConditionalUpExtend Ctrl+Shift+J Extends the selection to the previous matching preprocessor condition
编辑 Copy Ctrl+C Copies the selection to the Clipboard
编辑 Cut Ctrl+X Cuts the selection and moves it to the Clipboard
编辑 CutAppendNext Adds the next cut text to end of the Clipboard
编辑 CutSelection Cuts the selection and puts it on the Clipboard
编辑 DebugBreakpoints Alt+F9
编辑 Delete Del
编辑 Delete Column Deletes a column fromthe table
编辑 DeleteBack Backspace Deletes the selection or, if there is no selection, the character to the left of the cursor
编辑 DeleteBlankLines Deletes the blank lines adjacent to the cursor
编辑 DeleteHorizontalSpace Deletes the spaces and tabs around the cursor
编辑 DeleteRelationshipFromDatabase Marks the selected relationship(s) for deletion
编辑 DeleteTableFromDatabase Marks the selected table(s) for deletion
编辑do
cumentEnd Ctrl+End Moves to the end of thedo
cument
编辑do
cumentEndExtend Ctrl+Shift+End Extends the selection to the end of thedo
cument
编辑do
cumentStart Ctrl+Home Moves to the begin
ning of the file
编辑do
cumentStartExtend Ctrl+Shift+Home Extends the selection to the begin
ning of the file
编辑 EditToggleOvertype Ins Toggles between inserting and replacing text
编辑 End(Brief) Moves to the end of the current line, bottom of the text window, or end of the file
编辑 Find Ctrl+F Finds the specified text
编辑 FindBackwardDlg Opens the Find dialog, searching backward
编辑 FindForwardDlg Opens the Find dialog, searching forward
编辑 FindInFiles Searches for a string in multiple files
编辑 FindNext F3 Finds the next occurrence of the specified text
编辑 FindNextWord Ctrl+F3 Finds the next occurrence of the selected text
编辑 FindPrev Shift+F3 Finds the previous occurrence of the specified text
编辑 FindPrevWord Ctrl+Shift+F3 Finds the previous occurrence of the selected text
编辑 FindRegExpr Finds the next string using regular expressions
编辑 FindRegExprPrev Finds the previous string using regular expressions
编辑 FindRepeat Continues the previous search
编辑 FindReplace Ctrl+H
编辑 FindReplaceRegExpr Replaces the specified text with different text, using regular expressions
编辑 FindToggleAllDocs Toggles searching across all opendo
cuments
编辑 FindToggleCaseSensitivity Toggles case sensitive matching
编辑 FindToggleMatchWord Toggles whole word matching
编辑 FindToggleRegExpr Toggles regular expression matching
编辑 FindTool Ctrl+D Activates the Find tool
编辑 GoTo Ctrl+G
编辑 GoToErrorTag Moves to the line containing the current error or tag
编辑 GoToFirstRow Goes to the first row in the query results
编辑 GoToIndentation Moves to the end of the indentation
编辑 GoToLastRow Goes to the last row in the query results
编辑 GoToMatchBrace Ctrl+] Finds the matching brace
编辑 GoToMatchBraceExtend Ctrl+Shift+] Extends the selection to the matching brace
编辑 GoToNewRow Creates a new row below last row in the query results
编辑 GoToNextErrorTag F4 Moves to the line containing the next error or tag
编辑 GoToNextRow Goes to the next row in the query results
编辑 GoToPrevErrorTag Shift+F4 Moves to the line containing the previous error or tag
编辑 GoToPreviousRow Goes to the previous row in the query results
编辑 GoToRow Goes to the specified row in the query results
编辑 Home Home Moves to either the start of the current line or the start of the text on that line
编辑 Home(Brief) Moves to the start of the current line, top of the text window, or start of the file
编辑 HomeExtend Shift+Home Extends the selection to either the start of the current line or the start of the text on that line
编辑 IndentSelectionToPrev Indents the selected text to line up with the previous line's indention
编辑 IndentToPrev Indents to the position of the next text on the previous line
编辑 Insert Column Inserts a column into the table
编辑 InsertQuoted Inserts the next character literally
编辑 LevelCutToEnd Cuts the text between the cursor and the end of the next bracketed level
编辑 LevelCutToStart Cuts the text between the cursor and the begin
ning of the previous bracketed level
编辑 LevelDown Finds the end of the next bracket level
编辑 LevelUp Finds the begin
ning of the previous bracket level
编辑 LineCut Ctrl+L Deletes the selected lines and puts them on the Clipboard
编辑 LineDelete Ctrl+Shift+L Deletes the selected line
编辑 LineDeleteToEnd Deletes to the end of the current line
编辑 LineDeleteToStart Deletes to the begin
ning of the current line
编辑 LineDowndo
wn Arrow Moves the cursordo
wn one line
编辑 LineDownExtend Shift+Down Arrow Extends the selectiondo
wn one line
编辑 LineEnd End Moves to the end of the current line
编辑 LineEndExtend Shift+End Extends the selection to the end of the current line
编辑 LineIndent Indents the selected text right one tab stop
编辑 LineOpenAbove Opens a new line above the cursor
编辑 LineOpenBelow Opens a new line below the cursor
编辑 LineStart Moves to the start of the current line
编辑 LineTranspose Alt+Shift+T Swaps current and previous lines
编辑 LineUnindent Indents the selected text left one tab stop
编辑 LineUp Up Arrow Moves the cursor up one line
编辑 LineUpExtend Shift+Up Arrow Extends the selection up one line
编辑 ListMembers Ctrl+Alt+T Brings up the completion list box
编辑 PageDown Pagedo
wn Moves the cursordo
wn one page
编辑 PageDownExtend Shift+Pagedo
wn Extends the selectiondo
wn one page
编辑 PageUp Page Up Moves the cursor up one page
编辑 PageUpExtend Shift+Page Up Extends the selection up one page
编辑 ParaDown Moves to the begin
ning of the next paragraph
编辑 ParaUp Moves to the begin
ning of the previous paragraph
编辑 ParameterInfo Ctrl+Shift+Space Provides help with parameters of functions
编辑 Paste Ctrl+V Inserts the Clipboard contents at the insertion point
编辑 Redo Ctrl+Y Redoes the previously undone action
编辑 RedoChanges Redoes the last action, ignoring movement commands
编辑 RemoveFromDiagram Removes the selected table or join line from the query
编辑 RemoveTableFromDiagram Removes the selected table(s) from the diagram
编辑 SearchIncremental Ctrl+I Starts an incremental search forward
编辑 SearchIncrementalBack Ctrl+Shift+I Starts an incremental search backward
编辑 SelectAll Ctrl+A Selects the entiredo
cument
编辑 SelectAllColumns Selects all columns in the table
编辑 SelectChar F8 Starts character selection mode
编辑 SelectCharInclusive Starts inclusive character selection mode
编辑 SelectColumn Ctrl+Shift+F8 Selects a columnar block of text
编辑 SelectHighlight Highlights the region between the cursor and the mark
编辑 SelectLine Ctrl+F8 Selects lines of text
编辑 SelectPara Selects the current paragraph
编辑 SelectSwapAnchor Swaps the anchor and the cursor in a selection
编辑 SelectionFormat Alt+F8 Formats the selection using the smart indent settings
编辑 SelectionLowercase Ctrl+U Makes the selection all lowercase
编辑 SelectionTabify Replaces spaces with tabs in the selection
编辑 SelectionUntabify Replaces tabs with spaces in the selection
编辑 SelectionUppercase Ctrl+Shift+U Makes the selection all uppercase
编辑 SentenceCut Alt+Shift+L Deletes the remainder of the sentence
编辑 SentenceLeft Moves to the begin
ning of the previous sentence
编辑 SentenceRight Moves to the begin
ning of the next sentence
编辑 SetPrimaryKey Creates a primary key on the selected columns
编辑 SetRepeatCount Sets the numeric argument or repeat count for the next command
编辑 SetRepeatCount0 Sets the numeric argument or repeat count to 0
编辑 SetRepeatCount1 Sets the numeric argument or repeat count to 1
编辑 SetRepeatCount2 Sets the numeric argument or repeat count to 2
编辑 SetRepeatCount3 Sets the numeric argument or repeat count to 3
编辑 SetRepeatCount4 Sets the numeric argument or repeat count to 4
编辑 SetRepeatCount5 Sets the numeric argument or repeat count to 5
编辑 SetRepeatCount6 Sets the numeric argument or repeat count to 6
编辑 SetRepeatCount7 Sets the numeric argument or repeat count to 7
编辑 SetRepeatCount8 Sets the numeric argument or repeat count to 8
编辑 SetRepeatCount9 Sets the numeric argument or repeat count to 9
编辑 ToggleViewWhitespace Ctrl+Shift+8 Shows or hides tab characters
编辑 TypeInfo Ctrl+T Provides the syntax for a variable, function or method selected in the editor
编辑 Undo Ctrl+Z Undoes the last action
编辑 UndoChanges Undoes the last action, ignoring movement commands
编辑 WBAddNewMember Add Member Function (WizardBar)
编辑 WBCreateNewVirtualFunction Add Virtual Function (Wizard Bar)
编辑 WBCreateNewWindowsMessageHandler Add Windows Message Handler (Wizard Bar)
编辑 WBDefaultAction Performs the current default action for the WizardBar
编辑 WBGoToClassDefinition Goes to selected class definition (WizardBar)
编辑 WBGoToMember Goes to selected function definition/implementation (WizardBar)
编辑 WBGoToMemberDeclaration Goes to selected function declaration (Wizard Bar)
编辑 WBGoToNext Goes to next function in current file (WizardBar)
编辑 WBGoToPrevious Goes to previous function in current file (WizardBar)
编辑 WBHelp Brings up help for the WizardBar
编辑 WBOpenInclude Opens selected include file (Wizard Bar)
编辑 WindowEnd Moves to the bottom of the text window
编辑 WindowLeftEdge Moves to the left edge of the text window
编辑 WindowRightEdge Moves to the right edge of the text window
编辑 WindowScrollDown Ctrl+Up Arrow Scrolls the file contentsdo
wn one line
编辑 WindowScrollLeft Scrolls the window to the left
编辑 WindowScrollRight Scrolls the window to the right
编辑 WindowScrollToBottom Scrolls the line to the bottom of the window
编辑 WindowScrollToCenter Scrolls the line to the center of the window
编辑 WindowScrollToTop Scrolls the line to the top of the window
编辑 WindowScrollUp Ctrl+Down Arrow Scrolls the file contents up one line
编辑 WindowStart Moves to the top of the text window
编辑 WordCapitalize Makes the first character uppercase
编辑 WordDeleteToEnd Ctrl+Del Deletes a word to the right
编辑 WordDeleteToStart Ctrl+Backspace Deletes a word to the left
编辑 WordLeft Ctrl+Left Arrow Moves back one word
编辑 WordLeftExtend Ctrl+Shift+Left Arrow Extends the selection back one word
编辑 WordLowerCase Makes the word lowercase
编辑 WordRight Ctrl+Right Arrow Moves forward one word
编辑 WordRightExtend Ctrl+Shift+Right Arrow Extends the selection forward one word
编辑 WordTranspose Ctrl+Shift+T Swaps the current and previous words
编辑 WordUpperCase Makes the word uppercase
编排 AutoLayoutBoth Automatically resize the dialog horizontally, allowing the dialog width to shrink or grow if needed
编排 AutoLayoutGrow Automatically resize the dialog horizontally, allowing the dialog width to grow if needed
编排 AutoLayoutNoResize Automatically resize the dialog horizontally, leaving the dialog width unchanged
编排 CheckMnemonicKeys Ctrl+M Detects duplicate mnemonics in the resource
编排 ControlHeightDecrease Shift+Up Arrow Sizes the selected control or dialog up one dialog unit
编排 ControlHeightIncrease Shift+Down Arrow Moves the selected control or dialogdo
wn one dialog unit
编排 ControlMoveDowndo
wn Arrow Moves the selected control(s)do
wn one dialog unit
编排 ControlMoveLeft Left Arrow Moves the selected control(s) left one dialog unit
编排 ControlMoveRight Right Arrow Moves the selected control(s) right one dialog unit
编排 ControlMoveUp Up Arrow Moves the selected control(s) up one dialog unit
编排 ControlWidthDecrease Shift+Left Arrow Sizes the selected control or dialog left one dialog unit
编排 ControlWidthIncrease Shift+Right Arrow Sizes the selected control or dialog right one dialog unit
编排 DialogGridToggle Toggles the grid on and off
编排 DialogRulerToggle Toggles the ruler and guides on and off
编排 InsertActiveXControlIntoDialog Inserts a new ActiveX control into the dialog
编排 LayoutAlignBottom Ctrl+Down Arrow Aligns the bottom edges of the selected controls with thedo
minant control
编排 LayoutAlignHorizontalCenter Shift+F9 Aligns the horizontal centers of the selected controls with thedo
minant control
编排 LayoutAlignLeft Ctrl+Left Arrow Aligns the left edges of the selected controls with thedo
minant control
编排 LayoutAlignRight Ctrl+Right Arrow Aligns the right edges of the selected controls with thedo
minant control
编排 LayoutAlignTop Ctrl+Up Arrow Aligns the top edges of the selected controls with thedo
minant control
编排 LayoutAlignVerticalCenter F9 Aligns the vertical centers of the selected controls with thedo
minant control
编排 LayoutArrangeButtonsBottom Ctrl+Shift+B Places the selected buttons along the bottom-center of the dialog box
编排 LayoutArrangeButtonsRight Ctrl+B Places the selected buttons in the top-right corner of the dialog box
编排 LayoutCenterInDialogHorizontally Ctrl+Shift+F9 Centers the controls horizontally within the dialog box
编排 LayoutCenterInDialogVertically Ctrl+F9 Centers the controls vertically within the dialog box
编排 LayoutFlipHorizontally Flips the dialog controls horizontally and toggles MidEast styles
编排 LayoutGuides Changes the grid or guide visibility and granularity
编排 LayoutMakeSameHeight Resizes the selected controls to have the same height as thedo
minant control
编排 LayoutMakeSameSize Resizes the selected controls to have the same size as thedo
minant control
编排 LayoutMakeSameWidth Resizes the selected controls to have the same width as thedo
minant control
编排 LayoutSizeToContent Shift+F7 Resizes the selected control(s) to fit the caption text
编排 LayoutSpaceEvenlyAcross Alt+Right Arrow Evenly spaces the selected controls horizontally
编排 LayoutSpaceEvenlyDown Alt+Up Arrow Evenly spaces the selected controls vertically
编排 LayoutTabOrder Ctrl+D Sets the order of controls within the dialog
编排 ResourceTest Ctrl+T Runs the dialog box to test appearance and behavior
编排 SelectDialogGuideType Ctrl+G Cycles between no grid, guidelines, and grid for dialog editing
编译 Build F7 Builds the project
编译 BuildBatch
编译 BuildClean
编译 BuildCompile Ctrl+F7 Compiles the file
编译 BuildConfigurations
编译 BuildExecute Ctrl+F5
编译 BuildRebuildAll
编译 BuildSetActiveConfiguration
编译 BuildStop Ctrl+Break
编译 BuildToggleBuild
编译 DebugAttachToActive Attaches to running process
编译 DebugGo F5 Starts or continues the program
编译 DebugRunToCursor Ctrl+F10 Runs the program to the line containing the cursor
编译 DebugStepInto F11 Steps into the next statement
编译 ToolsProfile
编译 ToolsRemoteConnection
插入 EditPreviewHTMLPage Previews the current page
插入 InsertAccelerator Creates a new accelerator key
插入 InsertAcceleratorTable Ctrl+7 Creates a new accelerator table resource
插入 InsertBitmap Ctrl+5 Creates a new bitmap resource
插入 InsertCursor Ctrl+3 Creates a new cursor resource
插入 InsertDatabaseItem Inserts a new item into the database
插入 InsertDialog Ctrl+1 Creates a new dialog box resource
插入 InsertFile Inserts a file into thedo
cument
插入 InsertIcon Ctrl+4 Creates a new icon resource
插入 InsertMenu Ctrl+2 Creates a new menu resource
插入 InsertResource Ctrl+R
插入 InsertResourceCopy
插入 InsertString Creates a new string
插入 InsertStringTable Ctrl+8 Creates or opens the string table resource
插入 InsertToolbar Ctrl+6 Creates a toolbar resource
插入 InsertVersionInfo Ctrl+9 Creates or opens a version information resource
插入 NewATLComp
插入 NewClass
插入 NewForm Creates a new from and adds it to the project
插入 VerInfoStringBlockDelete Deletes a version information block
插入 VerInfoStringBlockInsert Adds a new version information block
查看 ActivateCallStackWindow Alt+7 Activates the Call Stack window
查看 ActivateDisassemblyWindow Alt+8 Activates the Disassembly window
查看 ActivateMemoryWindow Alt+6 Activates the Memory window
查看 ActivateOutputWindow Alt+2
查看 ActivateRegistersWindow Alt+5 Activates the Registers window
查看 ActivateVariablesWindow Alt+4 Activates the Variables window
查看 ActivateWatchWindow Alt+3 Activates the Watch window
查看 ActivateWorkspaceWindow Alt+0
查看 BrowseBaseClasses Shows the base class graph of the selected class
查看 BrowseCallGraph Shows the call graph of the selected function
查看 BrowseCallersGraph Shows the callers graph of the selected function
查看 BrowseDefAndRefs Shows symbol definitions and references
查看 BrowseDerivedClasses Shows the derived class graph of the selected class
查看 BrowseOutline Shows the outline of the selected or current file
查看 ClassWizard Ctrl+W
查看 DiagramZoomControl Zooms the Database Diagram
查看 Permissions Displays permissions for the stored procedure
查看 Properties Alt+Enter
查看 Refresh
查看 ResourceSetIncludes Edits the resource symbol file name and preprocessor directives
查看 ResourceSymbols Browses and edits the symbols in the resource file
查看 ShowPanesDiagram Shows the Query Diagram pane (toggle)
查看 ShowPanesGrid Shows the Query Grid pane (toggle)
查看 ShowPanesResults Shows the Query Results pane (toggle)
查看 ShowPanesSQL Shows the Query SQL pane (toggle)
查看 ShowTableAsColumn Shows the column names for the selected tables
查看 ShowTableAsCustom Custom
查看 ShowTableAsGrid Shows column properties for the selected tables
查看 ShowTableAsKey Shows the key columns for the selected tables
查看 ShowTableAsMinimized Shows only the names of the selected tables
查看 ToggleCallStackWindow Shows or hides the Call Stack window
查看 ToggleDisassemblyWindow Shows or hides the Disassembly window
查看 ToggleFullScreen Toggles Full Screen mode on and off
查看 ToggleMemoryWindow Shows or hides the Memory window
查看 ToggleOutputWindow Shows or hides the Output window
查看 ToggleRegistersWindow Shows or hides the Registers window
查看 ToggleVariablesWindow Shows or hides the Variables window
查看 ToggleWatchWindow Shows or hides the Watch window
查看 ToggleWorkspaceWindow Shows or hides the Workspace window
查看 WBActionButtonActive Activates the WizardBar
查看 WBClassComboActive Activates the WizardBar
查看 WBFilterComboActive Activates the WizardBar
查看 WBMembersComboActive Activates the WizardBar
窗口 WindowCascade Arranges the windows as overlapping tiles
窗口 WindowClose
窗口 WindowCloseAll
窗口 WindowCycle Moves focus to the next window
窗口 WindowDeleteColRight Removes the column of splitters to the right of the active pane
窗口 WindowDeleteColumnLeft Removes the column of splitters to the left of the active pane
窗口 WindowDeleteRowDown Removes the row of splitters below the active pane
窗口 WindowDeleteRowUp Removes the row of splitters above the active pane
窗口 WindowDockingView Alt+F6
窗口 WindowHide Shift+Esc Hides the window
窗口 WindowKillPane Removes the current splitter pane
窗口 WindowList
窗口 WindowMaximize Maximizes or restores the current window
窗口 WindowNewWindow
窗口 WindowNext Activates the next window
窗口 WindowNextMDI Activates the next undocked window
窗口 WindowNextPane F6 Activates the next pane
窗口 WindowPrevPane Shift+F6 Activates the previous pane
窗口 WindowPrevious Activates to the previous window
窗口 WindowPreviousMDI
窗口 WindowSinglePane Removes all splitters, leaving a single pane
窗口 WindowSplit
窗口 WindowSplitHorizontal Splits the window horizontally
窗口 WindowSplitVertical Splits the window vertically
窗口 WindowSwitchPaneDown Activates the splitter pane below
窗口 WindowSwitchPaneLeft Activates the splitter pane to the left
窗口 WindowSwitchPaneRight Activates the splitter pane to the right
窗口 WindowSwitchPaneUp Activates the splitter pane above
窗口 WindowTileHorizontally
窗口 WindowTileVertically
工程 BuildProjectExport
工程 FileNewInProject Creates a newdo
cument in the project workspace
工程 InsertComponent Inserts gallery components into the project
工程 InsertDatasource Adds a Data Connection to the active project
工程 InsertFilesIntoProject Inserts existing file(s) into project
工程 InsertNewFolder Inserts a new folder into the project
工程 ProjectDependencies
工程 ProjectInsertIntoWorkspace
工程 ProjectSelectTool Ctrl+Alt+P Activates the Project selection tool
工程 ProjectSettings Alt+F7
工程 SourceControlAdd Puts project files under source code control
工程 SourceControlCheckIn Checks in the files to source code control
工程 SourceControlCheckOut Checks out the files from source code control
工程 SourceControlExplorer Invokes the source code control system
工程 SourceControlGetLatestVersion Gets the latest version of files from source code control
工程 SourceControlRefresh Updates source code control file status
工程 SourceControlRemove Removes project files from source code control
工程 SourceControlShare Shares a file from another source code control project
工程 SourceControlShowDifferences Shows the changes made to a file since it was checked out
工程 SourceControlShowHistory Shows the history of a file or files under source code control
工程 SourceControlUndoCheckOut Undoes the check out of files, without retaining changes
工具 AutoJoinSelectedTables Automatically joins the selected tables
工具 Browse Alt+F12
工具 BrowseCloseBrowseDB Closes the Browse Information Database
工具 Cancel Esc Hides windows or cancels modes
工具 FileStopFindInFiles Stops Find in files, if it is running
工具 HideActivePane Hides this query pane
工具 Macro
工具 MacroAdd Adds a Macro
工具 MacroPauseRecording Pauses or resumes the current macro recording session
工具 MacroPlayQuick Ctrl+Shift+P
工具 MacroRecordQuick Ctrl+Shift+R Start recording a temporary, throw-away macro
工具 MacroReloadFile Reloads Macros in the current Macro File
工具 MacroStopRecording Ends the current macro recording session
工具 NewOraclePackageBody Creates a new package body in the database
工具 NewOraclePackageSpec Creates a new package specification in the database
工具 NewQuery Creates a new local query in the database project
工具 RunProcedure Runs the selected object
工具 StopProcedure Stops running the selected stored procedure
工具 TableOpen Opens the object
工具 ToolsCustomize
工具 ToolsCustomizeToolbars Customizes the toolbars
工具 ToolsOptions
工具 UpdateRemoteOutputFile Updates the remote project output file
工具 UserTool1 Activates user-defined tool 1
工具 UserTool10 Activates user-defined tool 10
工具 UserTool11 Activates user-defined tool 11
工具 UserTool12 Activates user-defined tool 12
工具 UserTool13 Activates user-defined tool 13
工具 UserTool14 Activates user-defined tool 14
工具 UserTool15 Activates user-defined tool 15
工具 UserTool16 Activates user-defined tool 16
工具 UserTool2 Activates user-defined tool 2
工具 UserTool3 Activates user-defined tool 3
工具 UserTool4 Activates user-defined tool 4
工具 UserTool5 Activates user-defined tool 5
工具 UserTool6 Activates user-defined tool 6
工具 UserTool7 Activates user-defined tool 7
工具 UserTool8 Activates user-defined tool 8
工具 UserTool9 Activates user-defined tool 9
文件 ApplicationExit Quits the application;
prompts to savedo
cuments
文件 FileClose
文件 FileGoTo Ctrl+Shift+G Opens a file based on the selected text
文件 FileOpen Ctrl+O Opens an existingdo
cument
文件 FilePrint Ctrl+P Prints all or part of thedo
cument
文件 FilePrintPageSetup Changes the page layout settings
文件 FileSave Ctrl+S Saves thedo
cument
文件 FileSaveAll Saves all the open files
文件 FileSaveAllExit Saves all the open files and exits Developer Studio
文件 FileSaveAs ...
文件 New Ctrl+N Creates a newdo
cument, project or workspace
文件 NewBinary Creates a new binary file
文件 NewBitmap Creates a new bitmap
文件 NewResourceScript Creates a new resource script
文件 NewText Creates a new text file
文件 ProjectSaveResources Saves the resources for a project
文件 ResourceOpenBinary Opens the selected resource for binary editing
文件 SaveChangeScript Displays an SQL change script of your edits
文件 SaveSelection Saves changes in the selected objects to the database
文件 WorkspaceClose
文件 WorkspaceOpen
文件 WorkspaceSave

回复人: Over() (2002-1-18 10:48:50) 得0分
ctrl+alt+deldo
uble,关闭vc
回复人: wkoe7810(wkoe) (2002-1-18 12:53:36) 得0分
关注
有将选中的一段话注释的快捷键
回复人: mygo(舟中夜起) (2002-1-18 13:24:40) 得0分
#if #endif
Ctrl+K Ctrl+J
回复人: lovevc1978(秋风) (2002-1-18 13:51:46) 得0分
Alt+F8 自动整理选定的代码
Ctrl+F2 书签
回复人: wunder(还在调试...) (2002-1-18 14:03:12) 得0分
Ctrl+] 检查匹配的括号

回复人: eion(电离子) (2002-1-18 15:17:58) 得0分
没事看看——不多哦
回复人: xuewenmao(学问猫) (2002-1-18 15:46:31) 得0分
好贴子


回复人: MadLee(Mad) (2002-1-18 16:16:06) 得0分
VC里的快捷键是可以自定义的。
Tools->Customize->Keyboard
另外,
Help->Keyboardmap里有所有的快捷键(包括自定义的)
回复人: honlin(爱你在心口难开) (2002-1-18 16:30:44) 得0分
以上的精华部分我已经整理出来了,要的请举手!
回复人: hover(翔(拒绝专家分,努力学习中)) (2002-1-18 16:38:48) 得0分
Ctrl+V
Ctrl+C
嘿嘿~
回复人: rediori(江枫) (2002-1-18 17:00:53) 得0分
楼上的是最最经典的
回复人: objectman(编程八级工) (2002-1-18 17:35:46) 得0分
我自己做了两个宏
一个是自动给函数加注释 用CTRL+~调出来
一个是注释/取消注释选中的代码,用CTRL+/调出来
嘿嘿,特别好用
回复人: kamphkb(依栏望海) (2002-1-18 18:00:24) 得0分
To objectman(编程八级工): 您老果然是八级的。呵呵
俺只有一个宏帮定一个快捷键用来注释的。(/**/)
回复人: eion(电离子) (2002-1-18 18:06:11) 得0分
to objectman(编程八级工)
贴出来瞧瞧,别太自私嘛
回复人: mahongxi(烤鸡翅膀)(我是编程机器...) (2002-1-18 18:08:20) 得0分
TO 楼上两位:
讲讲啊!
 
有没有象delphi 一样的Ctrl+Shift+C,Ctrl+j等的快捷键?
我用了一下Ctrl+Space没有Delphi的好用!
 
顶部