源:VC2010编写Dll文件1、打开VS2010【Flie/New/Project/VisualC++/Win32/Win32ConsoleApplication】在下面输入一个名称,比如mydll,然后【OK/Next】,然后在ApplicationType里选择Dll,在AdditionalO...
分类:
其他好文 时间:
2015-06-03 17:17:02
阅读次数:
82
os.system 调用系统命令,完成后退出,返回结果是命令执行状态,一般是0os.popen可以实现一个“管道”,从这个命令获取的值可以在python 中继续被使用#该方法不但执行命令还返回执行后的信息对象#好处在于:将返回的结果赋于一变量,便于程序的处理os.popen使用语法如下:os.pop...
分类:
其他好文 时间:
2015-06-03 17:17:59
阅读次数:
111
help-install new software:http://download.eclipse.org/birt/update-site/4.2提示“Cannot complete the install because one or more required items could not ...
分类:
其他好文 时间:
2015-06-03 17:19:20
阅读次数:
121
---------------------2014年12月29日更新---------------------我已经用下面提到的第三种方法禁用了谷歌字体了,最近wordpress后台还是莫名奇妙地非常慢,卡顿感让我十分不爽,本着处女座追求完美的毛病,继续寻找原因。这回是浏览器左下角一直显示“正在等待...
分类:
其他好文 时间:
2015-06-03 17:16:47
阅读次数:
140
1. 对技术要有追求2. 有空要总结成文字3. 计算: 协程+core dump继续执行(setjump, longjump到main初始化之后),秒起(重写segv处理函数,发送消息到监控进程)等。 http://blog.csdn.net/qq910894904/article/details/...
分类:
其他好文 时间:
2015-06-03 17:16:27
阅读次数:
89
Last three days, I want to install devstack on my virtual machine on Vmware Workstation.The VM'system is Ubuntu14.04. However,i met too many problem t...
分类:
其他好文 时间:
2015-06-03 17:16:40
阅读次数:
268
本文翻译自http://www.raywenderlich.com/63338/grand-central-dispatch-in-depth-part-2原作者:Derek Selander译者:Riven、@nixzhu前半部分由 Riven 翻译,但他由于太忙而搁置,后由 NIX 整理校对并翻...
分类:
其他好文 时间:
2015-06-03 17:15:52
阅读次数:
134
1.定义,是干什么用的QTableWidget是QT程序中常用的显示数据表格的空间,很类似于VC、C#中的DataGrid。说到QTableWidget,就必须讲一下它跟QTabelView的区别了。QTableWidget是QTableView的子类,主要的区别是QTableView可以使用自定义...
分类:
其他好文 时间:
2015-06-03 17:15:16
阅读次数:
162
一.问题给定一个十进制的正整数,写下从1开始,到N的所有整数,然后数一下其中出现“1”的个数。要求:写一个函数 f(N) ,返回1 到 N 之间出现的 “1”的个数。例如 f(12) = 5。在32位整数范围内,满足条件的“f(N) =N”的最大的N是多少。
分类:
其他好文 时间:
2015-06-03 17:15:05
阅读次数:
84
(一)掌握分页存储过程例题:从Car表中查出第四页的记录,每页为三条记录。--分析--取一页数据出来select top 3 * from car--跳过n条记录--1.找出前n条的主键值select top 6 code from car order by code---2.跳过去select t...
分类:
其他好文 时间:
2015-06-03 17:15:55
阅读次数:
111
The error info:[Excel Destination [20]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call t...
分类:
其他好文 时间:
2015-06-03 17:12:12
阅读次数:
349
The Unique MSTTime Limit:1000MSMemory Limit:10000KTotal Submissions:22668Accepted:8038DescriptionGiven a connected undirected graph, tell if its minim...
分类:
其他好文 时间:
2015-06-03 17:12:01
阅读次数:
98
xcode6 文档自动标注VVDocumenter更新后支持原文:http://jingyan.baidu.com/article/c45ad29cc9e33c051653e210.html123456更新xcode6 发现自动标注不能使用了 /// 不能自动提示了。工具/原料xcode6方法/步骤...
分类:
其他好文 时间:
2015-06-03 17:13:08
阅读次数:
143
YOUTH --- Samuel Ullman Youth is not a time of life; it is a state of mind; it is not a matter of rosy cheeks, red lips and supple knee...
分类:
其他好文 时间:
2015-06-03 17:14:01
阅读次数:
181
本人在做数字县区过程中,需要吉奥GeoGlobe Server发布数据,期间遇到些平台问题。故立此帖,作为参考。 1 字段限制: GeoGlobe 5.2部署在我的服务器Windows Server 2008 R2 64 中文简体版 的一个服务没有问题,但是发布在其他地方的5.2却出现查询错误。 在...
分类:
其他好文 时间:
2015-06-03 17:13:19
阅读次数:
133
原文地址:http://www.cnblogs.com/manuosex/p/3584701.html一、Tablelayout简介 Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件。当为TableRow对象时,可在TableRow下添加.....
分类:
其他好文 时间:
2015-06-03 17:12:58
阅读次数:
148
转http://blog.csdn.net/baple/article/details/8604585java判断list为空分类: JAVA2013-02-23 08:47 18368人阅读 评论(0) 收藏 举报if(null == list || list.size() ==0 ){}list...
分类:
其他好文 时间:
2015-06-03 17:11:01
阅读次数:
93