NRabbit

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

2009年12月15日

摘要: VC++开发ActiveX 控件 转载:http://www.codeproject.com/KB/COM/CompleteActiveX.aspx效果图如下:IntroductionActiveX is a Microsoft technology developed in the mid 90�s, that allows for the creation of applet-like app... 阅读全文
posted @ 2009-12-15 14:56 kevin.nrabbit 阅读(714) 评论(0) 推荐(0) 编辑

2009年11月20日

摘要: “让代码看起来更舒服”,看到这个标题,也许你会条件反射地以为我要讲“重构”或者“编码规范”等等。噢,可爱的开发人员,我们暂且不谈技术,只谈体验。让我们来装扮一下每天都要面对的Visual Studio,让代码看起来更舒服。下图展示了Visual Studio 2008默认的编辑器,为了让代码更加容易辨识,Visual Stud... 阅读全文
posted @ 2009-11-20 14:46 kevin.nrabbit 阅读(250) 评论(0) 推荐(0) 编辑

2009年8月3日

摘要: 关于SQL Prompt 的破解文章园子里已经有不少人发过了。破解思路我也不想重复,不知道的可以参考:http://www.cnblogs.com/jintan/archive/2008/06/16/1223282.html 官方下载地址是:http://downloads.red-gate.com/SQLToolbelt.exe,目前的版为3.9.0.43 SQL Server2000效果图... 阅读全文
posted @ 2009-08-03 13:58 kevin.nrabbit 阅读(252) 评论(0) 推荐(0) 编辑

2009年7月28日

摘要: 1.概论 先来阐述一下DLL(Dynamic Linkable Library)的概念,你可以简单的把DLL看成一种仓库,它提供给你一些可以直接拿来用的变量、函数或类。在仓库的发展史上经历了“无库-静态链接库-动态链接库”的时代。 静态链接库与动态链接库都是共享代码的方式,如果采用静态链接库,则无论你愿不愿意,lib中的指令都被直接包含在最终生成的EXE文件中了。但是若使用DLL,该DLL不必被... 阅读全文
posted @ 2009-07-28 12:39 kevin.nrabbit 阅读(296) 评论(0) 推荐(0) 编辑

摘要: 1、VC to Delphi Delphi源程序: library ExportChartData; uses SysUtils, Classes; {$R *.res} const DLL_VER : Word = $0001; function GetVer: Word; begin Result := DLL_VER; end; pr... 阅读全文
posted @ 2009-07-28 12:38 kevin.nrabbit 阅读(1078) 评论(0) 推荐(0) 编辑

2009年7月20日

摘要: exec master..xp_cmdshell 'dtsrun ...' --如果成功,调用xp_cmdshell来调用dtsrun工具执行包在命令行窗口中 执行 DTSRUN 命令Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->C:\Documen... 阅读全文
posted @ 2009-07-20 15:44 kevin.nrabbit 阅读(329) 评论(0) 推荐(0) 编辑

2009年7月19日

摘要: 方法一(get/set pixel) 核心语句: resultBitmap.SetPixel(x, y, sourceBitmap.GetPixel(offsetX + x, offsetY+y)) /// /// get a certain rectangle part of a known graphic /// /// path ... 阅读全文
posted @ 2009-07-19 17:41 kevin.nrabbit 阅读(1272) 评论(1) 推荐(0) 编辑

2009年7月13日

摘要: Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 C#代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->int s... 阅读全文
posted @ 2009-07-13 09:51 kevin.nrabbit 阅读(515) 评论(0) 推荐(0) 编辑

2009年7月11日

摘要: 1.当前用户下是否有某个表 select count(*) from user_tables where table_name = 'TABLE_NAME'; 注意,一般情况下,引号里面的table_name要全部用大写。 如果结果为1,表示有这个表,为0表示没有这个表。 2.某个用户下是否有某个表? select count(*) from dba_tables where owner = '... 阅读全文
posted @ 2009-07-11 18:46 kevin.nrabbit 阅读(781) 评论(0) 推荐(0) 编辑

摘要: ORACLE段: 首先在ORACLE建立PACKAGE和PACKAGE BODY,将在这里面定义函数和存储过程返回结果集。 1:建立PACKAGE: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->CREATE OR REPLACE packag... 阅读全文
posted @ 2009-07-11 18:32 kevin.nrabbit 阅读(252) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页