11 2006 档案

摘要:1.设置字体使用关键字设置字体,7个关键字:xx-small、x-small、small、medium、large、x-large、xx-largebody{ font-size:small; }不要使用像素级别的精确度body{ font-size:12px;} 阅读全文
posted @ 2006-11-30 16:39 DeepSought 阅读(395) 评论(2) 推荐(0) 编辑
摘要:看了TerryLeeAtlas学习手记系列 ,自己动手做了第一个Demo。(太简单了,不适合放在这里 可以删调 ^_^)环境:VS 2005 并安装了AtlasSetup.msi 关于AtlasSetup.msi的下载地址在我的首页下载连接中有。 CS代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://w... 阅读全文
posted @ 2006-11-29 16:07 DeepSought 阅读(570) 评论(1) 推荐(0) 编辑
摘要:今天是个好日子。因为工作关系,我们开发团队都搭起了最新的环境。VS 2005,SQL Server2005以后可以跟着学习Atlas,NB...想想真不错! 阅读全文
posted @ 2006-11-29 11:50 DeepSought 阅读(196) 评论(0) 推荐(0) 编辑
摘要:想实现这样的功能:单击一个服务器端按钮(登陆)后,如果登陆成功隐藏页面上的一个HTML按钮。于是想通过在服务器端执行javascript脚本实现; private void Btn_login_Click(object sender, System.EventArgs e) { string suid=uid.Text; ... 阅读全文
posted @ 2006-11-23 10:34 DeepSought 阅读(2237) 评论(1) 推荐(0) 编辑
摘要:sql插入操作,使用ExecuteNonQuery方法 当返回值=1时插入成功,else 该值已经存在 阅读全文
posted @ 2006-11-20 14:43 DeepSought 阅读(644) 评论(1) 推荐(0) 编辑
摘要:int a,b;Round(a/b,2);如果b>a结果总是0,晕了!要改成这样的:Round(a/cast(b as float),2); 阅读全文
posted @ 2006-11-13 17:05 DeepSought 阅读(2269) 评论(1) 推荐(0) 编辑
摘要:√教程连接√下载链接√网站链接√文章链接 阅读全文
posted @ 2006-11-13 14:39 DeepSought 阅读(1130) 评论(7) 推荐(0) 编辑
摘要:环境:VS.NET 2003 、Office 2003语言:VBScript 、C#步骤: 1.单击“工具箱-添加/移除项”,弹出“自定义工具箱”; 2.点击“COM组件”,选择“Microsoft Office Chart 11.0”然后确定,此时工具栏上出现“Microsoft Office Chart 11.0”的图标; 3..aspx的后台代... 阅读全文
posted @ 2006-11-10 14:15 DeepSought 阅读(1720) 评论(2) 推荐(0) 编辑
摘要:1,请在一个新开的word文件里面输入:=rand(200,99)然后回车看看会发生什么?据说,连比尔盖茨都不知道为什么会这样。 ----------------------2,《Excel 2000》隐藏的赛车游戏以前微软的Office软件就常隐藏着有趣的小游戏,像之前的Word就曾藏有仿真飞行游戏。现在Excel 2000又有隐藏着一个3D赛车游戏唷,照着以下的方法做,你也可以叫出这个游戏:... 阅读全文
posted @ 2006-11-09 16:59 DeepSought 阅读(303) 评论(1) 推荐(0) 编辑
摘要:1.将.dll、.ocx等考到system32下。2.用命令注册regsvr32.exe .dll。(eg:regsvr32.exe OWC11.dll)3.在注册表中查看:利用名称或与其唯一对应的clsid("clsid:0002E55D-0000-0000-C000- 000000000046")可查找到相关信息 阅读全文
posted @ 2006-11-09 11:51 DeepSought 阅读(529) 评论(0) 推荐(0) 编辑
摘要:环境:VS.NET 2003 、Office 2003语言:VBScript 、C#步骤: 1.单击“工具箱-添加/移除项”,弹出“自定义工具箱”; 2.点击“COM组件”,选择“Microsoft Office Chart 11.0”然后确定,此时工具栏上出现“Microsoft Office Chart 11.0”的图标; 3..aspx的后台代... 阅读全文
posted @ 2006-11-09 09:57 DeepSought 阅读(3330) 评论(1) 推荐(1) 编辑
摘要:/1 select * from tab_studentsgo/2exec ('select * from tab_students') -执行sql语句go/3exec proc_text -执行不带差数的存储过程go/4exec sp_executesql N'select * from tab_students'go/5declare @var1 v... 阅读全文
posted @ 2006-11-07 14:35 DeepSought 阅读(451) 评论(1) 推荐(0) 编辑
摘要:数据表如下: ID 时间 字段1 字段2 字段3 1 2006-11-2 1:10:00 001 60 ... 阅读全文
posted @ 2006-11-06 14:00 DeepSought 阅读(393) 评论(0) 推荐(0) 编辑
摘要:我用以下两种方法解决:1.select a/case when b=0 then 1 else b end as c; 2.select case when b=0 then null else a/b end;(推荐) 阅读全文
posted @ 2006-11-03 16:21 DeepSought 阅读(3266) 评论(1) 推荐(0) 编辑
摘要:1.取小数点后两位Math.roundMath.Round(12.1235,2)=>12.12 阅读全文
posted @ 2006-11-03 14:25 DeepSought 阅读(273) 评论(1) 推荐(0) 编辑
摘要:A B C D E F G H I J K L M ... 阅读全文
posted @ 2006-11-02 14:09 DeepSought 阅读(397) 评论(0) 推荐(0) 编辑
摘要:CommandText 属性尚未初始化;http://1.1 503 Service unavailable;无法在Web服务器上启动调试。您没有调试该服务器的权限。 阅读全文
posted @ 2006-11-02 09:50 DeepSought 阅读(414) 评论(0) 推荐(0) 编辑
摘要:通配符 描述 示例 % 包含零个或更多字符的任意字符串。 WHERE title LIKE '%computer%' 将查找处于书名任意位置的包含单词 computer 的所有书名。 ... 阅读全文
posted @ 2006-11-01 11:01 DeepSought 阅读(2283) 评论(1) 推荐(0) 编辑
摘要:1.DATEADD ( datepart , number, date ) :在向指定日期加上一段时间的基础上,返回新的 datetime 值。2.DATEDIFF ( datepart , startdate , enddate ) :返回跨两个指定日期的日期和时间边界数。 3.DATENAME ( datepart , date ):返回代表指定日期的指定日期部分的字符串。4.DATEPART... 阅读全文
posted @ 2006-11-01 09:52 DeepSought 阅读(1103) 评论(2) 推荐(0) 编辑

点击右上角即可分享
微信分享提示