posted @ 2010-02-01 16:02
阿龍
阅读(251)
推荐(0)
摘要:
StyleCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Text;usingSyst...
阅读全文
posted @ 2010-01-18 10:45
阿龍
阅读(165)
推荐(0)
摘要:
<script language="javascript" type="text/javascript"> function checkName(){ String.prototype.Trim = function() //给string增加个Trim()方法 { return this.replace(/(^\s*)|(\s*$)/g, ""); } String.p...
阅读全文
posted @ 2010-01-15 16:19
阿龍
阅读(261)
推荐(0)
摘要:
有朋友问起:MSSQL中如何用SQL清除所有表的数据?这个需求分三种类型:第一:只要数据库中表是空的;第二:表是空的,并且自增长列可以从1开始增长。第三:表是空的,并且自增长列可以从1开始增长,而且存在表间的约束。邀月稍微整理了下,放在这里,便于有需要的朋友参阅。其实,这不算什么需求。只要用数据库的生成脚本,几分钟即可生成一个干净的表结构及存储过程、视图、约束等。这里提供了另一种用SQL解决问题的...
阅读全文
posted @ 2010-01-06 13:21
阿龍
阅读(342)
推荐(0)
摘要:
单个修改所有者sql语句如下:查询分析器输入:EXEC sp_changeobjectowner 'user.table', 'dbo'user.table的意思为:所有者.表名,比如oblog.oblog_user,以前的语句表示将table这张表的所有者由user改成dbo批量修改所有者语句如下:查询分析器输入:exec sp_msforeachtable 'sp_changeobjectow...
阅读全文
posted @ 2010-01-01 09:59
阿龍
阅读(283)
推荐(0)
摘要:
Code39Font在水晶报表中使用时只需要新建一个Formula Fields,内容为:"*"+trim({ColumnName})+"*"即可使用。
阅读全文
posted @ 2009-12-29 13:51
阿龍
阅读(883)
推荐(0)
摘要:
按回车触发按钮click事件的问题 <script language="javascript" type="text/javascript">function document.onkeydown(){ var e = event.srcElement; if (e != document.getElementById("TextBox1") && event.k...
阅读全文
posted @ 2009-12-16 15:56
阿龍
阅读(526)
推荐(0)
摘要:
[代码][代码]第一部分资源文件可以获取,第二部分不行。最后一行的dll除外。为什么?!
阅读全文
posted @ 2009-12-09 15:35
阿龍
阅读(199)
推荐(0)
摘要:
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm此地址包含水晶报表所有版本的示例,补丁等文件目前水晶报表10.0有SP6补丁。
阅读全文
posted @ 2009-12-03 09:14
阿龍
阅读(471)
推荐(0)
摘要:
KB961847 - "Error creating control- [text] property" ASP.NET server cntls in VS 1.如下错误:"Error creating control - [text] could not be set on property" with custom ASP.NET server controls in VS 2008 SP1...
阅读全文
posted @ 2009-11-24 07:50
阿龍
阅读(387)
推荐(1)