01 2012 档案

摘要:转载 http://wiki.wxwidgets.org/Converting_everything_to_and_from_wxString 阅读全文
posted @ 2012-01-30 00:06 快乐驿站 阅读(170) 评论(0) 推荐(0) 编辑
摘要:转载 http://wiki.wxwidgets.org/Embedding_PNG_Images 阅读全文
posted @ 2012-01-29 14:50 快乐驿站 阅读(162) 评论(0) 推荐(0) 编辑
摘要:先上个图: 主要的类 1: #ifndef _OLEautomation_h_ 2: #define _OLEautomation_h_ 3: 4: 5: enum WdWordDialog 6: { 7: wdDialogHelpAbout = 9, 8: wdDialogHelpWordPerfectHelp = 10, 9: wdDialogDocumentStatistics = 78, 10... 阅读全文
posted @ 2012-01-26 21:53 快乐驿站 阅读(1703) 评论(0) 推荐(0) 编辑
摘要:资源 http://gsoap2.sourceforge.net/ 整理出来的一个小工具 下载 阅读全文
posted @ 2012-01-23 18:30 快乐驿站 阅读(340) 评论(0) 推荐(0) 编辑
摘要:wxwidgets开发系统,缺少很好的报表设计工具,可以借助Word来做报表。 Office自动化参考http://msdn.microsoft.com/en-us/library/78whx7s6(v=vs.80).aspx 一个很好的对COM的操作类http://disphelper.sourceforge.net/ 仔细看它的readme.htm文件 贴上一个操作类 void ReportDll_Open(const wchar_t* fileName,bool visible)//打开报表模板 void ReportDll_Close()//关闭 void ReportD... 阅读全文
posted @ 2012-01-23 18:05 快乐驿站 阅读(599) 评论(0) 推荐(0) 编辑
摘要:贴两个主要的类: winsockclient.h 1: #ifndef WINSOCKCLIENT_H 2: #define WINSOCKCLIENT_H 3: 4: #include <wx/event.h> 5: #include <wx/socket.h> 6: 7: namespace ty 8: { 9: class IWinsockClient 10: { 11: public: 12: ... 阅读全文
posted @ 2012-01-23 17:35 快乐驿站 阅读(1339) 评论(0) 推荐(0) 编辑
摘要:下面是2个主要的类:MyMenu.h 1: #pragma once 2: 3: 4: 5: class MyMenu 6: { 7: public: 8: MyMenu(wxString text,wxImage* img,int index,wxFrame* frame); 9: virtual ~MyMenu(void); 10: 11: private: 12: wxString m_text; 13: wx... 阅读全文
posted @ 2012-01-23 16:51 快乐驿站 阅读(1386) 评论(0) 推荐(0) 编辑