什么/什么是“符号浏览器”在Visual Studio 2008中?
好的,这就是后台......我将手动修复项目中的多个资源头文件。这包括修复此值,其中包括: #define _APS_NEXT_SYMED_VALUE
...自动写入(通常) resource.h
。
OK, so this is the background... I'm going to manually fix the multiple resource header files in our project. That involves fixing this value, among other things: #define _APS_NEXT_SYMED_VALUE
... that is automatically written to in (normally) resource.h
.
记录为具有此目的:
_APS_NEXT_SYMED_VALUE是
时使用符号
浏览器中的新命令手动分配符号值
时将发出的下一个符号值。
_APS_NEXT_SYMED_VALUE is the next symbol value that will be issued when you manually assign a symbol value using the New command in the Symbol Browser.
但 Symbol 浏览器在哪里??我想知道,因为我想知道我为这些值设置了什么。我知道 Class 浏览器/视图是什么,我知道 Object 浏览器是什么,但这让我感到疯狂。 :-D我甚至用Google搜索visual studio符号浏览器
,但是没有提供相关浏览器的文档。我知道如果那里有新命令,我就在正确的位置,我可以在其中手动分配符号值。嗯...
But where is the Symbol Browser!? I want to know, as I want to know what I'm setting these values for. I know what the Class Browser/View is, I know what the Object Browser is, but this is driving me nuts. :-D I've even googled for "visual studio" "symbol browser"
, but came up with no documentation of the browser in question. I know I'm at the right place if there's a "New" command there, and I can manually assign a symbol value in it. Hmm...
在Visual Studio中,选择查看 / 资源视图菜单选项然后,在资源视图中,右键单击.rc文件并选择资源符号。
In Visual Studio, select the View/Resource View menu option then, in the Resource View, right-click the .rc file and select Resource Symbols.
可以在MSDN上找到此处的文档。
Documentation can be found here on MSDN.