摘要:
方法1: CREATE TABLE #tabTmp(id int) INSERT #tabTmp EXECUTE('SELECT id FROM '+@TableName) declare curOne cursor for SELECT id FROM #tabTmp open curOne FE 阅读全文
摘要:
1.禁用RTTI 禁用的方法很简单,就是要在工程(dpr文件中。Delphi2010下项目文件是dproj文件,但dpr文件仍然是默认的编写代码的项目文件)的Uses语句前添加下面的定义就可以了: { Reduce EXE size by disabling as much of RTTI as p 阅读全文
摘要:
Windows Service简介:一个Windows服务程序是在Windows操作系统下能完成特定功能的可执行的应用程序。Windows服务程序虽然是可执行的,但是它不像一般的可执行文件通过双击就能开始运行了,它必须有特定的启动方式。这些启动方式包括了自动启动和手动启动两种。对于自动启动的Wind... 阅读全文
摘要:
从网上拷贝,方便记忆 Keyboard Shortcuts 1. Alt-Shift-Enter to View Coding Window Full-screen Hitting "Alt+Shift+Enter" will make the coding window full-screen and (temporarily) drop most other windows fro... 阅读全文