上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 324 下一页
摘要: 注意:Option中的O是要大写的,不然语法报错 1.动态创建select function createSelect(){ var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(mySelec... 阅读全文
posted @ 2009-04-07 22:58 emanlee 阅读(7350) 评论(0) 推荐(0) 编辑
摘要: 数据类型在 Microsoft® SQL Server™ 中,每个列、局部变量、表达式和参数都有一个相关的数据类型,这是指定对象可持有的数据类型(整型、字符、money 等等)的特性。SQL Server 提供系统数据类型集,定义了可与 SQL Server 一起使用的所有数据类型。下面列出系统提供... 阅读全文
posted @ 2009-04-06 20:23 emanlee 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 我安装上VC后,一编译程序,要么一直处于编译状态,要么处于linking...状态,VC就像死了一样。 不管英文版,中文版,装没装补丁都那样。 有时候VC经常 出现这样的情况,运行的时候,显示linking无法中止,关也关不了;点stop build也不行只好CTRL+ALT+DEL关掉。 应该是VC的BUG。。。。。我有时也出现过这种情况 。 终于找到了,我装了卡巴斯基就这样子,把... 阅读全文
posted @ 2009-04-06 20:07 emanlee 阅读(2328) 评论(0) 推荐(0) 编辑
摘要: ISNULL是判断是否为NULL而NULLIF是把值换成NULLCOALESCE是用别的来代替NULLSELECT employee_id,first_name,last_name,NULLIF (SALES_QUOTA,-1) as QuotaFROM employees就是把-1变成 NULLC... 阅读全文
posted @ 2009-04-06 19:17 emanlee 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: The alert, confirm, and prompt boxes The three "commands" involved in creating alert, confirm, and prompt boxes are: window.alert() window.confirm() window.prompt() Lets look at them in detail. Th... 阅读全文
posted @ 2009-04-06 13:57 emanlee 阅读(485) 评论(0) 推荐(0) 编辑
摘要: Date Formatting in Reporting Services - list of format codes The Date Formatting article that I wrote earlier seems to be quite popular. As a follow up to that , I stumbled accross the full list of... 阅读全文
posted @ 2009-04-06 13:10 emanlee 阅读(513) 评论(0) 推荐(0) 编辑
摘要: http://www.red-gate.com/products/SQL_Refactor/index.htmhttp://orafaq.com/utilities/sqlformatter.htmhttp://mikeschinkel.com/blog/anyoneknowofatsqlcodef... 阅读全文
posted @ 2009-04-05 00:04 emanlee 阅读(1709) 评论(0) 推荐(0) 编辑
摘要: 将String类型解析为Date类型. parseDate('2006-1-1') return new Date(2006,0,1) parseDate(' 2006-1-1 ') return new Date(2006,0,1) parseDate('2006-1-1 15:14:16') return new Date(2006,0,1,15,14,16) pa... 阅读全文
posted @ 2009-04-05 00:04 emanlee 阅读(7330) 评论(0) 推荐(0) 编辑
摘要: ===================== javascript日期操作 时间对象是一个我们经常要用到的对象,无论是做时间输出、时间判断等操作时都与这个对象离不开。除开JavaScript中的时间对象外,在VbScript中也有许多的时间对象,而且非常好用。下面还是按照我们的流程来进行讲解。 它是一个内置对象——而不是其它对象的属性,允许用户执行各种使用日期和时间的过程。 方法:分为得到时间... 阅读全文
posted @ 2009-04-05 00:04 emanlee 阅读(34172) 评论(0) 推荐(1) 编辑
摘要: 个人认为编程能力是个理论与实践相结合,相互促进的产物。 如果你是正规军——计算机软件及相关专业,系统地学习过计算机理论,那么就直接从实践出发,先给自己定个目标,学习什么语言,向哪个方向发展(应用软件、管理软件、工具软件、专业软件等等),然后弄一个符合学习方向的较完整的例子开始做,就是例如看图软件、图书管理、MD5计算器、几何图例生成器(这个是随便说说)等等具有一定规模(很小)和要求的程序。 如果你... 阅读全文
posted @ 2009-04-05 00:03 emanlee 阅读(384) 评论(0) 推荐(0) 编辑
上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 324 下一页