上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 40 下一页
摘要: 使用举例:// File: SimpleDLLClass.h#ifdef SIMPLEDLL_EXPORT //在DLL工程属性-c/c++-预处理器-预处理器定义中添加此宏定义#define DLL_EXPORT __declspec(dllexport)#else#define DLL_EXPORT __declspec(dllimport)#endifclass DLL_EXPORT SimpleDLLClass{public:SimpleDLLClass();virtual ~SimpleDLLClass();virtual getValue() { return m_nValue;} 阅读全文
posted @ 2014-02-10 14:27 酷熊 阅读(1487) 评论(0) 推荐(0) 编辑
摘要: OSG默认的窗口时全屏的,调试的时候不方便。 viewer.setUpViewInWindow(100, 100, 800, 600); 在网上看到一段代码,也可以非全屏显示 int _tmain(int argc, _TCHAR* argv[]){ osgViewer::Viewer viewer 阅读全文
posted @ 2014-01-24 14:32 酷熊 阅读(1831) 评论(0) 推荐(0) 编辑
摘要: 目的是是的A表和B表某一个列集合相等delete from A where tagetColumn not in ( select targetColumn from B) 阅读全文
posted @ 2014-01-13 17:12 酷熊 阅读(639) 评论(0) 推荐(0) 编辑
摘要: SQL2005 Microsoft SQL Server Management Studio Express管理器里,右键单击一个数据库,指向“任务”,再单击“导入数据”或“导出数据”中没有这个选项,但是2008的Management Studio有。经搜索,sqlserver2005中,导入导出数据是通过SQL Server 2005 Integration Services (SSIS)实现的,那么可以在SQL 2005的安装目录下找到DTSWizard.exe,例如我的是在C:\Program Files\Microsoft SQL Server\90\DTS\Binn,在该目录下找到D 阅读全文
posted @ 2014-01-13 12:39 酷熊 阅读(291) 评论(0) 推荐(0) 编辑
摘要: #pragma comment(lib,"opengl32.lib") 阅读全文
posted @ 2013-12-25 10:20 酷熊 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 删除android:paddingBottom、android:paddingLeft、android:paddingRight和android:paddingTop四个属性 阅读全文
posted @ 2013-12-24 11:22 酷熊 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 在AndroidMenifest.xml中activity标签中,添加一个属性android:screenOrientation="landscape" 阅读全文
posted @ 2013-12-24 11:17 酷熊 阅读(216) 评论(0) 推荐(0) 编辑
摘要: WebStorm注册码User Name:EMBRACELicense Key:===== LICENSE BEGIN =====24718-1204201000001h6wzKLpfo3gmjJ8xoTPw5mQvYYA8vwka9tH!vibaUKS4FIDIkUfy!!f3C"rQCIRbShpSlDcFT1xmJi5h0yQS6===== LICENSE END =====PhpStorm注册码User Name:EMBRACELicense Key:===== LICENSE BEGIN =====43136-1204201000002UsvSON704l"dIL 阅读全文
posted @ 2013-12-17 15:56 酷熊 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 项目右键-属性-配置属性-C/C++-高级-禁用特定警告-填写警告编号例如4996 阅读全文
posted @ 2013-12-13 15:25 酷熊 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 工具-选项-文本编辑器-文件扩展名-勾选“将无扩展名文件映射到(M)” Microsoft Visual C++ 阅读全文
posted @ 2013-12-08 15:36 酷熊 阅读(451) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 40 下一页