上一页 1 ··· 6 7 8 9 10 11 下一页

2006年6月24日

获得本计算机的名字和IP地址

摘要: WORD wVersionRequested; WSADATA wsaData; char name[255]; CString ip; PHOSTENT hostinfo; wVersionRequested = MAKEWORD( 2, 0 ); if ( WSAStartup( wVersionRequested, &wsaData ) == 0 ) { if( gethostnam... 阅读全文

posted @ 2006-06-24 07:19 路吾 阅读(461) 评论(1) 推荐(0) 编辑

按钮添加图标

摘要: 1.将按钮->属性->类型->图标2.设置按钮变量:在class wizard里CButton m_ok3.添加一个图标IDI_ICON1;4.在protected 下声明: HICON m_hIcon1;5.在程序的OnInitDialog()里: m_hIcon1 = AfxGetApp()->LoadIcon(IDI_ICON1); m_ok.SetIcon(m_hI... 阅读全文

posted @ 2006-06-24 07:00 路吾 阅读(558) 评论(0) 推荐(0) 编辑

获得鼠标移动的坐标

摘要: 在OnMouseMove(UINT nFlags, CPoint point) 事件里 CString str; str.Format("鼠标位置x=%d:y=%d",point.x,point.y); SetWindowText(str); //在标题栏显示鼠标坐标 GetDlgItem(IDC_STATIC1)->SetWindowText(str); 阅读全文

posted @ 2006-06-24 06:52 路吾 阅读(446) 评论(0) 推荐(0) 编辑

设置系统启动时程序自动运行

摘要: UpdateData(true);const TCHAR gcszAutoRunKey[]= _T( "Software\\microsoft\\windows\\currentversion\\run" );const TCHARgcszWindowClass[] = _T("我的程序");//设置开机程序自启动键值位置和其下新建子键值(可设为程序名)HKEY hKey;LONG lRet, l... 阅读全文

posted @ 2006-06-24 06:44 路吾 阅读(884) 评论(0) 推荐(0) 编辑

让程序窗口总是在最前面

摘要: UpdateData(true);if(m_bTopMost){AfxGetMainWnd()->SetWindowPos(&CWnd::wndTopMost,0,0,0,0,SWP_NOSIZE | SWP_NOMOVE);m_bTopMost=true;}else{AfxGetMainWnd()->SetWindowPos(&CWnd::wndNoTopMost ,... 阅读全文

posted @ 2006-06-24 06:38 路吾 阅读(965) 评论(0) 推荐(0) 编辑

2006年6月23日

判断一个字符串中是否含有非数字字符和是否含有字母字符?

摘要: CString m="2%* 323 23";int i = 0;while(i < m.GetLength()-1){ if(isdigit(m.GetAt(i)) ==0) //isalpha()函数是判断是否有字母的函数。{ MessageBox("不是数字");}else{MessageBox("是数字");}i++;} 阅读全文

posted @ 2006-06-23 17:46 路吾 阅读(2180) 评论(0) 推荐(0) 编辑

2006年6月20日

取得系统当前日期和时间

摘要: CTime time=CTime::GetCurrentTime(); // 获取系统时间 CString s = time.Format("%Y年 %m月 %d日 %H:%M:%S"); MessageBox(s); //显示当前的日期和时间 阅读全文

posted @ 2006-06-20 15:55 路吾 阅读(317) 评论(0) 推荐(0) 编辑

从文件中读取数据

摘要: CFile fileEditText; //Declare and open a file for readingCString strsend; if(fileEditText.Open("c:\\1.txt",CFile::modeRead)){ char cBuf[512]; //Declare a large buffer for reading the text UINT uBytest... 阅读全文

posted @ 2006-06-20 15:47 路吾 阅读(278) 评论(0) 推荐(0) 编辑

2006年6月19日

使用通用对话框

摘要: 在Windows系统中提供了一些通用对话框。在MFC中使用CFileDialog,CColorDialog,CFontDialog来表示。一般来讲你不需要派生新的类,因为基类已经提供了常用的功能。而且在创建并等待对话框结束后你可以通过成员函数得到用户在对话框中的选择。 CFileDialog文件选择对话框的使用:首先构造一个对象并提供相应的参数,构造函数原型如下:CFileDialog::CFil... 阅读全文

posted @ 2006-06-19 09:43 路吾 阅读(398) 评论(0) 推荐(0) 编辑

2006年6月16日

一个字符串放在剪贴板里

摘要: if(OpenClipboard()){ CString sPrjPath="wwwww"; //复制到剪切板的内容 EmptyClipboard(); HGLOBAL hClipboardData; hClipboardData = GlobalAlloc(GMEM_DDESHARE, sPrjPath.GetLength() + 1); char* pchData; pchData = (c... 阅读全文

posted @ 2006-06-16 15:08 路吾 阅读(324) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 下一页

导航