摘要:
自动存档 Email 本身就有非即时性。很多邮件并不需要马上查看,比如说Twitter的Follow信息,来自论坛的帖子回复通知,一些推送的文章。让它们出现在 Inbox,如果开了Gtalk或者其他邮件通知的工具会导致提示频繁,从而影响了精神的集中,无论是工作还是娱乐都不爽。(不提示的话又难以及时处理重 要邮件) 第一步:建立过滤器 第二步 邮件地址: 如我的Gmail是mmmhhhlll@gm... 阅读全文
摘要:
在http://www.spket.com/网站寻找在MyEclipse 提供ExtJs智能提示的插件时,无意中发现了这个网站上也开发了能够在VS2008中提供智能提示的js插件,并且提供多个Ext版本的插件下载。 下载地址: VSWD Ext 2.2 VSWD Ext 2.1 VSWD Ext 2.02 VSWD Ext 2.0.1 build 20080218 VSWD Ext 1.1.1 ... 阅读全文
摘要:
前不久卸载掉了自己的Windows Vista系统,装上了Windows7 旗舰版,在装机过程中也遇到了很多问题,有些问题是自己不曾遇到过的,但自己尝试着去解决,一步一步尝试着去努力。自己的不懈努力,也换回了成果。比如在装SQL Server 2005和Oracle 11g时就碰到了问题,在装好SQL Server 2005时,不能附加以前创建好的数据库,后来知道在Windows 7下要以管理员身... 阅读全文
摘要:
using System.ServiceProcess; System.ServiceProcess.ServiceController[] serviceController = System.ServiceProcess.ServiceController.GetServices(); foreach (System.ServiceProcess.ServiceController servi... 阅读全文
摘要:
允许 Windows Service 与其它程序进行交互 如图: 阅读全文
摘要:
windows 7 下安装了 oracle p6810189_10204_Win32 oracle client 版本:10204_vista_w2k8_x64_production_client 在windows 7 位下安装的方法: 一、解压后修改 p6810189_10204_Win32\Disk1\install\oraparam.ini文件 [Certified Versions] #... 阅读全文
摘要:
显示行号 复制代码 ? 这是一段程序代码。 --打开 EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;--关闭 EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp... 阅读全文
摘要:
/*** Copyright Microsoft, Inc. 1994 - 2000** All Rights Reserved.*/SET NOCOUNT ONGOUSE masterGOif exists (select * from sysdatabases where name='Northwind') drop database NorthwindgoDECLARE @device_d... 阅读全文
摘要:
代码: ScriptManager.RegisterClientScriptBlock(UpdatePanel1, typeof(UpdatePanel), "test", "alert('test');", true); 解释: ... 阅读全文
摘要:
显示行号 复制代码 ? 这是一段程序代码。 SELECT [name], case [type] when 'U' then 'TB' when 'V' then 'VE' when 'P' then 'SP' when 'IF' then 'FC' end as 类型, [create_date]as 创建时间, [modify_date] as 修改时间 FROM sys.... 阅读全文