03 2011 档案

摘要:Outlook Express中通讯簿默认保存路径修改方法 Outlook Express中通讯簿默认保存路径:C:\Windows\Application Data \Microsoft\Address Book目录下的udername.wab文件。默认保存路径修改方法: 在“开始”下的“运行”中键入“Regedit”,按“确定”按钮,启动注册表编辑器,打开HKEY_ CURREN_ USER \Software\ Microsoft\WAB\ WAB4\ Wab File Name,在右边窗口中将其默认改成专用数据分区的某个文件夹的路径即可。打开注册表 HKEY-CURRENT-USER\ 阅读全文
posted @ 2011-03-22 11:35 angtianqiang 阅读(1674) 评论(0) 推荐(0)
摘要:1:添加组件到控件工具箱 2:添加控件到窗体3:添加C#代码 1: using System; 2: using System.Collections.Generic; 3: using System.ComponentModel; 4: using System.Data; 5: using System.Drawing; 6: using System.Linq; 7: using System.Text; 8: using System.Windows.Forms; 9: 10: namespace WindowsFormsApplication11 11: { 12: public p 阅读全文
posted @ 2011-03-03 14:06 angtianqiang 阅读(4243) 评论(0) 推荐(0)
摘要:1 SELECT 2 表名=case when a.colorder=1 then d.name else ' ' end, 3 字段序号=a.colorder, 4 字段名=a.name, 5 标识=case when COLUMNPROPERTY( a.id,a.name, 'IsIdentity ')=1 then '√ 'else ' ' end, 6 主键=case when exists(SELECT 1 FROM sysobjects where xtype= 'PK ' and name in ( 阅读全文
posted @ 2011-03-02 14:25 angtianqiang 阅读(287) 评论(0) 推荐(0)