2010年12月16日

VC++6.0 程序使用XP风格样式

摘要: 1、实现原理:微软为Windows XP提供了Themes服务。Themes可以让程序具有“XP风格”,看起来更美观,因为微软更新了Comctl32.dll(ver 6.0)这个“XP风格”的控件。微软还为了保留传统的Windows界面风格,特地留下了Comctl32.dll v5.8。VC6的推出时间早于WinXP,因此VC6的程序默认是不使用“xp风格”的。程序使用xp风格主要是内置了manifest这东东。因此只要让VC6的程序中包含即可。包含可以外置,也可以内置为资源。2、实现方法:1打开你的VC6 工程,找到资源试图(ResourceView),然后在视图中的树的根结点上点鼠标右键 阅读全文

posted @ 2010-12-16 13:08 seaven 阅读(1635) 评论(0) 推荐(0) 编辑

2010年11月29日

[转载]VC中给一BUTTON加入图片

摘要: [代码] 阅读全文

posted @ 2010-11-29 14:05 seaven 阅读(613) 评论(0) 推荐(0) 编辑

2010年11月4日

SQL重复记录查询

摘要: [代码] 阅读全文

posted @ 2010-11-04 11:50 seaven 阅读(2680) 评论(0) 推荐(0) 编辑

2010年11月3日

CString 操作指南

摘要: [代码] 阅读全文

posted @ 2010-11-03 13:28 seaven 阅读(228) 评论(0) 推荐(0) 编辑

2010年10月28日

vc6.0中添加快捷注释

摘要: [代码] 阅读全文

posted @ 2010-10-28 09:21 seaven 阅读(3636) 评论(0) 推荐(0) 编辑

2010年10月27日

解决VC6在win7打开工程错误

摘要: 10回答者: 痴人说梦之 阅读全文

posted @ 2010-10-27 21:17 seaven 阅读(3656) 评论(0) 推荐(0) 编辑

2010年9月27日

ASP FSO文件处理函数大全

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<%'建立文件夹函数FunctionCreateFolder(strFolder)'参数为相对路径'首选判断要建立的文件夹是否已经存在DimstrTestFolder,objFSOstrTest... 阅读全文

posted @ 2010-09-27 16:02 seaven 阅读(9239) 评论(0) 推荐(0) 编辑

ASP读取TXT

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<%dimss(20)setfs=server.createobject("scripting.filesystemobject")file=server.mappath("qq.txt")se... 阅读全文

posted @ 2010-09-27 09:20 seaven 阅读(11462) 评论(0) 推荐(0) 编辑

2010年9月21日

js 获取最后一个字符

摘要: [代码] 阅读全文

posted @ 2010-09-21 16:08 seaven 阅读(2536) 评论(0) 推荐(0) 编辑

2010年6月15日

c++ int转字符串 char转字符串

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--第一种inta=111;charb[20];itoa(a,b,10);xxx.SetWindowText(CString(b));第二种inta=111;TCHARb[20]={0};_itot(a,... 阅读全文

posted @ 2010-06-15 11:33 seaven 阅读(698) 评论(0) 推荐(0) 编辑

导航