随笔- 75
文章- 3
评论- 65
阅读-
64397
03 2008 档案
SQL递归查询
摘要:declare @t table(RecID int,PUnitNo nvarchar(100),UnitNo nvarchar(100),PathDepth int,Path nvarchar(100)) declare @level int set @level=1 insert into @t SELECT RecID,PUnitNo,UnitNo,@level AS PathDepth,...
阅读全文
智能客户端(SmartClient) signer's certificate is not valid
摘要:-In VB2005 -Go to the property of the Project -Select the Signing tab -Click 'create test certificate' button - it will ask for new password 2 times and you have another 1 year extension!
阅读全文
智能客户端(SmartClient)
摘要:本文主要讨论基于企业环境的客户端应用程序模型,由于本人曾经从事过传统的客户端/服务器两层结构应用程序和基于.net平台的多层结构应用程序的开发,因此本文将着重描述.net平台上的智能客户端应用程序模型,并根据一般的企业应用系统的需求来一步一步构造出一个较为完整的客户端软件框架。 简介 智能客户端的概念作为Microsoft.net平台的一个特性而被提出,其实它的很多功能在传统的应用...
阅读全文