VC
plum2003
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MFC在编辑框(EDIT)尾部追加内容
首先勾选编辑框的Vertical scroll和Auto VScroll,这样可以实现滚动条的自动滚动。 假设m_editLogInfo为CEdit类型的控件变量,给编辑框所在对话框类添加如下函数即可:int CDlgXXX::ShowMsgInfo( CString strMsg ){ int iLen; strMsg += "\r\n"; iLen = m_editLogI原创 2013-03-08 17:51:52 · 6138 阅读 · 0 评论 -
ShellExecute与ShellExecuteEx的用法
ShellExecute:1.函数功能:你可以给它任何文件的名字,它都能识别出来并打开它。2.函数原型:HINSTANCE ShellExecute(HWND hwnd,LPCTSTR lpOperation,LPCTSTR lpFile,LPCTSTR lpParameters,LPCTSTR lpDirectory,INT nShowCmd);转载 2013-04-02 14:49:56 · 665 阅读 · 0 评论 -
Interprocess Communications
关于windows下进程间通信的文章文章出处:http://msdn.microsoft.com/en-us/library/windows/desktop/aa365574%28v=vs.85%29.aspx#base.using_dde_for_ipcThe Windows operating system provides mechanisms for facilitating转载 2013-04-10 16:23:17 · 734 阅读 · 0 评论
分享