摘要: /*每个函数都只有一句话!其实都是从我的另一篇 blog 里抠出来的:T-SQL 生成 两个新的真正的公历年历 http://blog.csdn.net/playyuer/archive/2004/04/07/2860.aspxT-SQL 生成一个简易的 公历年历 T-SQL 含日期所在月及年的周次http://blog.csdn.net/playyuer/archive/2004/04/05/2859.aspx由于使用了 (@@datefirst + datepart(weekday,@date)) % 7 判断周几因此与 datefirst 无关,且可适应各种语言版本的 SQL Serve 阅读全文
posted @ 2004-11-04 16:39 于斯人也 阅读(331) 评论(0) 推荐(0) 编辑
摘要: Microsoft Win32 to Microsoft .NET Framework API Maphttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/win32map.aspJAVA面试题集(选择自 zaowei21 的 Blog )http://dev.csdn.net/article/57/57639.shtmhttp://blog.csdn.net/whoopee/archive/2004/12/23/226992.aspx[group by问题 在线]周的规范问题~~~!!!! 阅读全文
posted @ 2004-11-04 02:06 于斯人也 阅读(146) 评论(0) 推荐(0) 编辑
摘要: /*C#: Simple Runtime Control Sizing and Dragging Class首先声明如下代码改自 CodeProject 同名文章(鸣谢原作者 Jim Korovessis: ~!@#$%^&*):http://www.codeproject.com/cs/miscctrl/CSPickBoxSample1.asp我做了如下改造:1.增加一个 ArrayList 存储 WiredControls2.增加 UnWireAllWiredControls() 方法,用于切换到控件"非设计"状态3.增加 WireControls() 方法,用 阅读全文
posted @ 2004-10-26 22:14 于斯人也 阅读(306) 评论(0) 推荐(0) 编辑
摘要: Java Code:class Class1{static void bubbleSort(int[] a){for (int j = a.length - 1; j > 0; j--) // outer loop (backward)for (int i = 0; i < j; i++) // inner loop (forward)if (a[i] > a[i+1]) //Swap{a[i] = a[i] + a[i+1];a[i+1] = a[i] - a[i+1];a[i] = a[i] - a[i+1];}}public static void main(Strin 阅读全文
posted @ 2004-10-24 17:25 于斯人也 阅读(301) 评论(0) 推荐(0) 编辑
摘要: .Net Remoting 实现简易的控制台命令行聊天室本套程序由四个主要的对象组成:1. ChatRoom (ChatRoom.cs): 服务器端真正的提供远程服务的对象,负责以服务器推(push)的方式把 Sender 发来的消息"广播"出去。2004-12-29 修订,使 Server Side 程序更加健壮!/* csc.exe ChatRoom.cs /t:library ChatRoom.dll*/using System;using System.Runtime.Remoting;//[Serializable]public class ChatRoom : 阅读全文
posted @ 2004-10-14 21:43 于斯人也 阅读(427) 评论(0) 推荐(0) 编辑
摘要: //C# 全拼: csc.exe XXX.cs public class Class1{static void Main(string[] args){System.Console.WriteLine(GetSpell("。asdasd @#$%%^% 在此"));//繁体不正常System.Console.WriteLine(GetSpell("在此處添加代碼 hello 以啟動應用程式"));}public static string GetSpell(string x){int[] iA = new int[]{-20319,-20317,-203 阅读全文
posted @ 2004-10-11 13:45 于斯人也 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 数据倒入还是建议用 bcpif exists (select * from tempdb..sysobjects where id = object_id(N'tempdb..#T')) drop table [#T]Create table #T(id int identity(1,1) not null, remark varchar(8001) null)Insert into #TExec master.dbo.xp_cmdshell 'type e:/data.txt' select * from #T剩下就靠你自己 根据"数据类型" 阅读全文
posted @ 2004-09-30 13:39 于斯人也 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 转贴,仅引用了 FSO,PDF 格式可以自己写,就像标志语言:Creating a PDF from a Stored Procedurehttp://www.sqlservercentral.com/columnists/mivica/creatingapdffromastoredprocedure.asp不愿注册就贴出来:Creating a PDF from a Stored ProcedureRegular Columnist : MIvica Posted: 08/26/2003 More Articles From This Columnist 14089 Reads Add A. 阅读全文
posted @ 2004-09-07 17:36 于斯人也 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 由 Microsoft 所提出的部件对象模型 (COM) ,包括 Automation 和 ActiveX 规范。通过 ActiveX部件技术可以把已创建的基于对象的部件组合起来,这些部件可以通过许多不同的工具来创建。应用"部件软件开发"方法有代码重用、模块功能分明等许多好处。下面以创建独立的界面控制 ActiveX Dll 部件为题,做进一步分析: 以下两个 ActiveX Dll 部件均实现了"在部件内部响应事件",即:在类模块内引用带事件的对象,以及在程序运行阶段动态添加控件(实现的技术细节可参阅《MSDN》)。例2:在 Delphi 提供了 Sp 阅读全文
posted @ 2004-08-24 01:59 于斯人也 阅读(297) 评论(0) 推荐(0) 编辑