惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cloudbric
Cloudbric
P
Palo Alto Networks Blog
T
Threatpost
T
Tor Project blog
T
Tenable Blog
AWS News Blog
AWS News Blog
Project Zero
Project Zero
L
LangChain Blog
Cyberwarzone
Cyberwarzone
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
C
CERT Recently Published Vulnerability Notes
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Security Latest
Security Latest
云风的 BLOG
云风的 BLOG
I
Intezer
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
A
Arctic Wolf
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
MongoDB | Blog
MongoDB | Blog
aimingoo的专栏
aimingoo的专栏
K
Kaspersky official blog
Jina AI
Jina AI
N
News | PayPal Newsroom
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Secure Thoughts
TaoSecurity Blog
TaoSecurity Blog
P
Privacy & Cybersecurity Law Blog
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
IT之家
IT之家
Forbes - Security
Forbes - Security
The Hacker News
The Hacker News
Last Week in AI
Last Week in AI
T
Threat Research - Cisco Blogs
Y
Y Combinator Blog

博客园 - 礼拜一

MAC实用技巧 。 工业设计的10个基本法则 Web可用性设计的247条指导方针 选中文本,变绿~ Examples of location paths using the unabbreviated syntax C# Console:利用mspaint打开图像并保存 。 15戒律 HttpWebRequest默认的只有2个并发连接限制!!!!! 获取远程XML文档 在外企工作,一些英語用法潜规则 Visual Studio 2005 中的命令窗口 Error: No such interface supported 动态加载UserControl~ - 礼拜一 - 博客园 英语常用高频语句 jQuery的一些备忘 - 礼拜一 - 博客园 XSLT模式匹配的语法 XPath表达式(缩写和详写方式) 穷死了,看电子书吧~ C#里边的控件缩写大全(比较规范)
vs2008命令窗口使用
礼拜一 · 2010-01-06 · via 博客园 - 礼拜一

VS2008命令窗口用的很少,“命令”窗口用于直接在 Visual Studio 集成开发环境 (IDE) 中执行命令或别名。可以执行菜单命令和不在任何菜单上显示的命令,不过有些命令还是挺方便的。

命令名 别名 完整名称

1.打印  ?  Debug.Print

2.快速监视 ??  Debug.Quickwatch

3.添加新项目 AddProj   File.AddNewProject

4.别名  Alias  Tools.Alias

5.“自动”窗口  Autos  调试.自动窗口

6.“断点”窗口  bl   调试.断点

7.切换断点  bp  Debug.ToggleBreakPoint

8.“调用堆栈”窗口   CallStack  调试.调用堆栈

9.清除书签  ClearBook  编辑.清除书签

10.关闭  Close  File.Close

11.关闭所有文档   CloseAll  Window.CloseAllDocuments

12.全部清除  cls  Edit.ClearAll

13.“命令”模式  cmd  视图.命令窗口

14.查看代码  code 视图.查看代码

15.列出内存  d  Debug.ListMemory

16.以 ANSI 形式列出内存  da   Debug.ListMemory /Ansi

17.列出内存(单字节格式)  db   Debug.ListMemory /Format:OneByte

18.以 ANSI 形式列出内存(四字节格式)  dc   Debug.ListMemory /Format:FourBytes /Ansi

19.列出内存(四字节格式)   dd  Debug.ListMemory /Format:FourBytes

20.删除到行首   DelBOL  Edit.DeleteToBOL

21.删除到行尾  DelEOL  Edit.DeleteToEOL


22.删除水平空白   DelHSp  编辑.删除水平空白

23.视图设计器   designer   视图.视图设计器

24.列出内存(浮点格式)  df  Debug.ListMemory /Format:Float

25.“反汇编”窗口  disasm  调试.反汇编

26.列出内存(八字节格式) dq   Debug.ListMemory /Format:EightBytes

27.全屏  FullScreen  视图.全屏

28.开始  g 调试.启动

29.F1帮助  Help  帮助.F1帮助

30.列出调用堆栈  kb  Debug.ListCallStack

31.“监视”窗口  Watch  调试.监视N

32.列出线程  ~  Debug.ListThreads

3 示例使用:

若要检查变量 varA的值:

>Debug.Print varA  或 >? varA