上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 45 下一页

2016年4月8日

ListBox Dock Fill 总是有空隙的问题

摘要: ListBox Dock设置了Fill, Right等 设计界面如己所愿,但是实际运行时,底部总是有不小的空隙。 原因是ListBox有一个属性: IntergralHeight 默认为True 此属性将要求显示完整的Item,所以根据 ItemHeight,ListBox强制修改... 阅读全文

posted @ 2016-04-08 00:27 norsd 阅读(357) 评论(0) 推荐(0)

2016年4月6日

CSproject文件总是在Solution中被修改PROJECT GUID问题

摘要: 1.情况: 打开2个Solution 一个是client,一个是server 他们会互相修改GUID,切换solution的时候都会显示 xxxxx已经被外部修改云云2.原因: 一般是在其中一个Solution文件中有2个不同的Project有相同的GUID, 此时Solu... 阅读全文

posted @ 2016-04-06 01:20 norsd 阅读(387) 评论(0) 推荐(0)

2016年3月8日

VC.NET 需要注意的一些问题

摘要: String^ abc = gcnew String(); String^ abc = nullptroverride .net 类方法:void Reset() override{....}属性:property virtual int Count{ int get()... 阅读全文

posted @ 2016-03-08 15:18 norsd 阅读(144) 评论(0) 推荐(0)

2016年3月5日

Bloomberg Desktop Api 关于历史Tick数据的一些参考

摘要: 使用WAPI命令可以看到当前BBG的Api情况。 目前2016年3月是V3的版本。其中有一个API Develper’s Guide 中有Core Develper Guide的pdf, 里面提到了BDH函数,也就是IntradayTickRequest. 他列出了一些有用的信息。... 阅读全文

posted @ 2016-03-05 21:16 norsd 阅读(394) 评论(0) 推荐(0)

2016年1月28日

MonogoDb的角色分类

摘要: 引用: http://blog.csdn.net/kk185800961/article/details/45619863 https://docs.mongodb.org/manual/reference/built-in-roles/ 角色分类 角色 权限及角色... 阅读全文

posted @ 2016-01-28 12:38 norsd 阅读(397) 评论(0) 推荐(0)

2016年1月27日

Matplotlib 如何显示中文

摘要: Python 3.x主要是如下代码import osfont = FontProperties(fname=os.path.expandvars(r"%windir%\fonts\simsun.ttc"), size=14)plt.xlabel("测试", fontproperti... 阅读全文

posted @ 2016-01-27 01:39 norsd 阅读(197) 评论(0) 推荐(0)

2016年1月20日

PyCharm的一些使用技巧

摘要: 定位到函数定义 在函数名处 Ctrl + B 就会快速定位到函数定义处在Console中执行文件 全选内容后,右键菜单 Execute Selection in Console 或者快捷键 Alt + Shift + E设置工作目录,这样一些数据文件可以用文件名快速访问>>> im... 阅读全文

posted @ 2016-01-20 02:54 norsd 阅读(484) 评论(0) 推荐(0)

2015年12月26日

std::thread 在DLLMain 中会发生死锁 std::thread cause deadlock in DLLMain

摘要: 注意不要再DLLMain中使用 std::thread 否则会发生死锁。 但是可以使用 _beginthreadex (此函数可以使用lambda) 或者直接使用windows的底层函数: CreateThread相关链接: http://stackoverflow.com/q... 阅读全文

posted @ 2015-12-26 18:34 norsd 阅读(303) 评论(0) 推荐(0)

2015年12月23日

MongoDb 创建用户以及其他版本造成的一些问题

摘要: 问题:require auth data to have schema version 3 but found 1 这是可以查看如下链接: http://stackoverflow.com/questions/26723693/getting-an-error-trying-to-... 阅读全文

posted @ 2015-12-23 16:26 norsd 阅读(148) 评论(0) 推荐(0)

2015年12月8日

String.Format 大全

摘要: 0、0的格式化string.Format("{0:8D8}", 3)//第一个8表示空8个位置,后一个8表示用0填写最多8位数据1、格式化货币(跟系统的环境有关,中文系统默认格式化人民币,英文系统格式化美元)string.Format("{0:C}",0.2) 结果为:¥0.20 ... 阅读全文

posted @ 2015-12-08 21:15 norsd 阅读(485) 评论(0) 推荐(0)

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 45 下一页

导航