Visual Studio
norsd
这个作者很懒,什么都没留下…
展开
-
Visual Studio 2022 启动后闪退解决办法
然后重新启动VisualStudio2022, 一段时间后,里会发现文件夹中又长出了 VisualStudio 这个文件夹。把他名字改掉,例如改成 VisualStudio2。里面有一个文件夹叫 VisualStudio。转载 2023-11-24 10:40:00 · 5348 阅读 · 7 评论 -
使用dumpbin 输出DLL外部函数
使用VisualStudio 提供的 Developer Command Prompt 启动 Console输入命令:dumpbin /EXPORTS dll_path >> output_path.txt原创 2022-01-27 10:20:54 · 248 阅读 · 0 评论 -
C# Windows Form 设计界面与实际显示不同的问题
问题来自于不同的缩放比率,默认是100%,更高的分辨率可能被认为调成125%, 150%这个可以用DPI表示目前没有很好解决,只有一些reference:https://blog.csdn.net/qq_42697866/article/details/104522827https://stackoverflow.com/questions/4075802/creating-a-dpi-...原创 2020-04-22 16:05:57 · 2724 阅读 · 0 评论 -
如何在Template Codes 中能够加载所在的Project的Assembly,获取所有Type
1.首先要获取Project对象2.分析得到Project对象生成的bin路径,也就是$(TargetPath)3.Assembly.LoadFromFile( binpath )4.asm.GetTypes(),这里要注意处理Reference Project代码如下:1.GetProject() Project GetProject() {原创 2014-02-08 18:47:32 · 1202 阅读 · 0 评论 -
当打开一个.h或.cpp文件时, Solution Explorer就自动展开文件所在的目录
当打开一个.h或.cpp文件时, Solution Explorer就自动展开文件所在的目录; 如果不想展开: Tools -> Options -> Projects And Solution -> General ->Track Active It转载 2014-02-25 10:59:19 · 989 阅读 · 0 评论 -
template code 引用的一些问题
1.问题: 引用同一个norlib.tt 下面的tt 。 一个KSTrade 正确。 一个 NDAP就报错。 报错说源文件某个函数有错误 helper.Common.tt 错误2.结果: NDAP下有一个同名文件 helper.Common.tt原创 2014-03-03 15:15:19 · 828 阅读 · 0 评论 -
整体代码缩进
1.在 VS, PYCHARM 中只要 拉选块之后,按下tab键,整个块就会缩进原创 2014-03-18 18:00:23 · 46117 阅读 · 13 评论 -
Visual Studio 调试卡顿的解决方法
将不用的断点删除关闭调试时打开的“IntelliXXX的窗口”上面的第2条测试有效!https://social.msdn.microsoft.com/Forums/zh-CN/944b34d7-4bb0-4b26-9015-ec45ea65fdf5/vs2013?forum=visualcpluszhchs原创 2015-07-18 18:53:48 · 9434 阅读 · 2 评论 -
MongoDb Windows 环境下 c++ driver 安装流程
1.安装boost 1.60 位置: c:\boost_1_60_0下载安装mongo c dirver http://mongoc.org/?jmp=docs#documentation http://mongoc.org/libmongoc/current/installing.html Building on Windows先编译 libbson 进入libsson的...原创 2018-05-11 17:01:36 · 2033 阅读 · 0 评论 -
MognoDb Linux C++ Driver 编译,运行注意事项
1.MongoDb C++ Driver 一般安装于 ./usr/local目录下,在这个目录下你能看到 boost文件夹, include文件夹(内部有bsoncxx,libbson, libmongoc, mongocxx等), lib文件夹(libson,libmongoc,mongocxx的各种so文件) 2.我们使用VisualStuio编译Linux工程,工程文件的设置如下: ...原创 2018-05-26 16:27:57 · 637 阅读 · 0 评论 -
TemplateText 书写工具类时必须注意的问题
在TemplateText中当制作一个工具TemplateText中时整个TemplateText 所有的输出都应该包在<#+#>中类似如下是错误的,将报错:A template containing a class feature must end with a class feature<#@ import namespace="norlib.SystemEx...原创 2018-12-15 03:21:42 · 379 阅读 · 0 评论 -
在TemplateText中使用项目宏$(ProjectDir)
this.Host.ResolveAssemblyReference("$(ProjectDir)")原创 2018-12-15 15:27:43 · 274 阅读 · 0 评论 -
c# CSProject Migrate
https://github.com/hvanbakel/CsprojToVs2017dotnet migrate-2017 migrate -t netstandard2https://marketplace.visualstudio.com/items?itemName=ConnieYau.NETPortabilityAnalyzer转载 2019-05-20 16:11:47 · 283 阅读 · 0 评论 -
windows 10使用 map network drive, 但是Visual Studio 中的Command却无法识别的问题
原因: windows 10 在资源管理器中创建的是 当时的 Identity(也就是名字不是Administrator的用户), Visual Studio 使用的是 Administrator (个人设置)所以Visual Studio 中使用 BuildEvent 无法识别 windows 10 中创建的 Network drive方法是 用 Administrator 打开 cmd...原创 2019-05-23 00:25:08 · 1423 阅读 · 0 评论 -
Template Code 无法使用 this.Host 报错
问题显示:Error 6 Compiling transformation: 'Microsoft.VisualStudio.TextTemplatingBED07DAE3B6FD53FA947017E5A5F7A123173F8AEEBD8059AD94FFEA4200EC409BE022035F5E3463EFD6E2867E0DEFBDC09BAEEE8B986A775611AFBB原创 2014-02-08 17:08:22 · 1359 阅读 · 0 评论 -
如何对某一区域的代码屏蔽警告的方法,及其一些问题
自从微软搞了一套字符安全函数( 特征是 _s ) , 他就把以前那套东西抛弃了, 比如 strcpy, sprintf . 如果您仍然调用, 就会输出一个warning , 一般是 4995 , 4996 . 这里有个问题, 如果我可以确定我的一部分代码是绝对可靠的, 我又为什么要去使用 _s , 毕竟, 很多人和我一样有洁癖, 代码多出来个_s, 还要为size原创 2009-03-13 13:27:00 · 1893 阅读 · 0 评论 -
vs2010 vc 调试钩子dll
vs2010vcdll project propertiesdebuggingcommand: 被挂接的exe 路径. (比如C:/文华财经Mytrader行情交易系统/mytrader_wh.exe)Attach: yes 然后启动debug , 运行mytrader_wh.exe , 然后外部动态挂接钩子到mytrader_wh.exe , 就可以调试了.原创 2010-02-10 09:10:00 · 3236 阅读 · 0 评论 -
Visual Studio 有用的插件
1.Nugethttp://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c原创 2012-05-09 02:19:40 · 605 阅读 · 0 评论 -
Visual Studio 文本替换 正则表达式
<a href='http://www.omniture.com' title='Web Analytics'><img src='http://msstonojsmsdn.112.2o7.net/b/ss/msstonojsmsdn/1/H.20.2--NS/0' height='1' width='1' border='0' alt='' /&原创 2012-11-16 17:40:21 · 5608 阅读 · 0 评论 -
Visual Studio 2012 Regular expression
用了.net 的表达式真折腾tick.UpdateTime = reader.GetDateTime(nDataTime); tick.AskPrice = new double[] { reader.GetDouble(nAskPrice1), reader.GetDouble(nAskPrice2), reader.GetDouble(nAskPric原创 2012-11-16 18:25:11 · 892 阅读 · 0 评论 -
如何在项目中加入已存在的文件夹, 注意是文件夹而不是文件
如何在项目中加入已存在的文件夹, 注意是文件夹而不是文件1.在 Solution Explorer 中点击相关的 Project2.点击Solution Explorer 下面的工具栏中的 Show All Files3.此时Project将显示出其文件(即 csproj)所在文件夹的其他存在文件和文件夹4.点选你需要的, 右键选择 include in原创 2012-12-11 10:29:24 · 2334 阅读 · 0 评论 -
如何使用 Properties.Reousrces
使用 Properties.Reousrces 可以非常方便的使用内嵌的资源1.创建资源: Project 右键属性 ------> Resources ------> (如果没有创建,则点击链接,创建新的默认Resources.resx) ------------> 加入资源 2.使用 Properties.Resources 访问资源: 注意资源必须设置原创 2012-12-10 18:08:41 · 781 阅读 · 0 评论 -
Visual studio 2012 ultimate 安装遇到 Prerequisites , 错误的函数 incorrect function
如题很奇怪, 然后 google , 给出的方案都不行........最后发现原来iso没下全...........1.3gb, 原本是1.48gb 的.............原创 2013-01-13 19:15:08 · 6328 阅读 · 0 评论 -
Visual Studio 文件
1.c# -> Debug-> Start Action -> Start Project;Start external program 这些信息并不存储于 csproj 而是位于 csproj.user中原创 2013-02-11 15:10:38 · 593 阅读 · 0 评论 -
c# 工程加入 win32 资源文件
这种事情就是一个字烦人,蛋疼,特别蛋疼。 搞了我一天。方法有几种,都特别烦,一个是 build event , 一个是 msbuild今天说 build event1.在 Build Events 中 , Pre-build 输入:copy $(ProjectDir)Time/norlib.Time.Holidays.xml "$(TargetDir)norlib.Time.Holidays.原创 2013-04-23 17:33:59 · 2006 阅读 · 0 评论 -
在Visual studio 中解除 TFS 的账号绑定
在Visual Studio中, 只要使用了TFS, 就会要求输入用户名密码验证 。 但是一旦点击验证对话框下部的:记住用户名密码以后都不能再修改用户名了。而且重装Visual Studio 听说也没用, 原因是,密码管理是使用Windows系统内部的。为了解除绑定,我们必须运行:rundll32 netplwiz.dll , Users原创 2013-06-21 16:32:48 · 10001 阅读 · 1 评论 -
Windows 中属于不同Owner的Workspace 互相无法看见,且无法删除
Windows 中属于不同Owner的Workspace 互相无法看见,且无法删除而且不能重叠,重叠的话会报错,告诉你这个文件夹已经被其他用户映射,所以你必须以那个Owner登陆tfs,然后删除 workspace!原创 2013-06-21 16:47:59 · 787 阅读 · 0 评论 -
VS代码中常用 正则表达式
1. #define ABC 1修改为 enum 样式:#define (.+?)\s+(.+?)$$1 = $2 ,原创 2013-08-24 18:23:41 · 1061 阅读 · 0 评论 -
在Visual Studio中使用正则表达式快速查找替换
Visual Studio 中的 find- replace 可以使用正则表达式: 举例: 从: #define DS_MIN_ERROR 0#define DS_ERROR 0#define DS_DOWNLOAD_ERROR 1#define DS_DB_DOWNLOAD_ERROR 2#define DS原创 2009-03-09 19:47:00 · 3053 阅读 · 0 评论