WinForm打开网页
摘要:System.Diagnostics.Process.Start("IEXPLORE.EXE", "http://www.baidu.com/");
阅读全文
posted @
2009-08-31 18:31
一路前行
阅读(741)
推荐(0) 编辑
Graphics竖排打印字体
摘要:g.DrawString("第一联白..存根联", fTitle, Brushes.Black, 250, 30, new StringFormat(StringFormatFlags.DirectionVertical));g.DrawString("第二联红..随货同行联", fTitle, Brushes.Black, 250, 30, new StringFormat(StringForm...
阅读全文
posted @
2009-08-11 17:32
一路前行
阅读(585)
推荐(0) 编辑
C# FontStyle
摘要:c#的字体风格FontStyle怎样才能同时是bold,Underline,Strikeout?同时具有这样的属性是这样的: FontStyle style = FontStyle.Regular; style |= FontStyle.Bold; style |= FontStyle.Italic; 如果是去掉某一种的话是: style-=FontStyle.Bold;
阅读全文
posted @
2009-08-11 17:22
一路前行
阅读(6172)
推荐(0) 编辑
VC9编译后文件很大
摘要:VC9打上SP1补丁之后编译出来的文件就会变得很大,为编译前App类继承的是CWinApp,而打补丁之后的确是继承了CWinAppEx(主要是增强了UI感官)。可以手动吧CWinAppEx改为CWinApp,另外stdafx.h中的 #include <afxcontrolbars.h>(功能区和控件条的 MFC 支持)也可以去掉
阅读全文
posted @
2009-08-02 18:01
一路前行
阅读(410)
推荐(1) 编辑