1. 请问Visual C++源代码保存在哪里就是说一打开就会全部项目出来之间可以运行的那种。
一般在 我的文档 里面,有一个和vs名字对应的文件夹,里面的projects里就是了。你可以在vs里面点打开,找到你要打开的项目的文件夹,里面有一个文件,点击可以直接打开该项目。
2. vs2022c#程序写在哪个文件里
系统文件夹。vs2022c#程序是写在系统文件里的,VisualStudio2022正式版,升级为64位,支持AI辅助编程。
3. .net已编译的程序,怎么能知道源码在哪个文件里
首先确认两点,第一,你没改过程序的名字,第二,确定源码在你能访问的目录下,保证这两版点的权前提下再看下面的步骤。不能保证那么就听天由命吧。
用文本搜索工具(notepad++自带),去你能确定的最小范围的目录下搜索"*.csproj"文件中"<AssemblyName>%程序名%</AssemblyName>"的文件。
找到后,去哪个目录下,在同级或上级目录找到"*.sln"文件。如果你安装了VS,那么双击它打开项目
4. vs2013 ultimate版本怎么看MFC源码
mfc.bsc是可以查看MFC源代码的文件,其位置在MFC源代码文件夹下,Visual Studio版本不一样的话,位置也不一样。
vc6.0位置:C:/Program Files/Microsoft Visual Studio/VC98/MFC/SRC/
vc2008sp1位置:D:/Program Files/Microsoft Visual Studio 9.0/VC/atlmfc/src/mfc
类似的位置搜索下就可以找得到,MSDN上有三种方法添加.bsc文件到工程,如下原文:
To open the .bsc file
* On the File menu, click Open and open the .bsc file.
The .bsc file will be available to all projects in the solution until you either reload the solution or delete the .bsc file from Solution Explorer or the Object Browser.
To attach the .bsc file to your project
1.In Solution Explorer, right-click the project node and click Add Existing Item on the shortcut menu.
2.Browse to the .bsc file and add it to your project.
The .bsc file will only be available in the project to which it is added. You can save the project so that the .bsc file will be available the next time that you open the project. You can delete the .bsc file from Solution Explorer
To add the .bsc file to the Object Browser
*In the Object Browser, click the Customize button and browse to the desired .bsc file.
When you add .bsc files to the Object Browser with the Customize button, the files are available to all projects in any solution that you open. This setting will persist across Visual Studio sessions.
The .bsc file that is referenced in each method will then appear in the Object Browser.
这里介绍第三种方法,单击“视图”→“对象浏览器”,在弹出的“对象浏览器”面板上“浏览”→“编辑自定义组件集”→“浏览”→“文件类型”→“源浏览器文件(*.bsc)”,然后在MFC源代码文件夹下选择mfc.bsc→“添加”→“确定.
5. vs一般代码页在哪个文件夹
在项目上点击右键选择在文件浏览器中查看
6. vs保存的代码在哪个文件
Visual Studio 2005开始,有一个不错的功能,让我们在编程过程中能够增加不少方便。那就是工具箱的代码片段粘贴。随意选择一段代码,然后展开工具箱,然后粘贴即可。你会看到如下的效果
但是这些代码到底保存到什么地方呢?
一般存放在
$SYSTEMDISK:\Documents and Settings\$UserName\Local Settings\Application Data\Microsoft\VisualStudio\$Version 目录下的toolbox.tbd文件中 【可以把这个文件备份起来,然后以后重新装的话,就可以直接拿过来用】
$SYSTEMDISK 是指你的系统盘
$UserName 是指你的用户名
$Version 是指当前Visual Studio的版本,例如vs2005即为 8.0,而vs2008即为9.0
例如,我的这个文件存放在
C:\Documents and Settings\ChenXizhang\Local Settings\Application Data\Microsoft\VisualStudio\9.0