11 2011 档案

摘要:/** 导入文本文件EXEC master..xp_cmdshell 'bcp dbname..tablename in c:\DT.txt -c -Sservername -Usa -Ppassword'/** 导出文本文件EXEC master..xp_cmdshell 'bcp dbname..tablename out c:\DT.txt -c -Sservername -Usa -Ppassword'或EXEC master..xp_cmdshell 'bcp "Select * from dbname..tablename" 阅读全文
posted @ 2011-11-26 12:52 Dragon.Spirit 阅读(344) 评论(0) 推荐(0)
摘要:以下未经说明,listctrl默认view 风格为report ------------------------------------------------------------------------------- 1. CListCtrl 风格 LVS_ICON: 为每个item显示大图标 LVS_SMALLICON: 为每个item显示小图标 LVS_LIST: 显示一列带有小图标的item LVS_REPORT: 显示item详细资料 直观的理解:windows资源管理器,"查看"标签下的"大图标,小图标,列表,详细资料 -------------- 阅读全文
posted @ 2011-11-21 17:19 Dragon.Spirit 阅读(481) 评论(0) 推荐(0)