触摸屏租赁
Touch screen rental
广告机租赁
Advertising rental
机器人租赁
Robot leasing
 当前位置:首页 > > 编辑框显示文件内容

新建一对话框,加入一编辑框和一按钮。
设置按钮属性为上下左右滚流动。
进入向导类,设置编辑框的变量属性为,类型:CEdit,变量:m_edit

void CMy55555Dlg::OnButton1()
{
 CFileDialog dlg(TRUE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,
  "All Files(*.*)|*.*| |",AfxGetMainWnd());
 CString strPath;
 CString strText;
 if(dlg.DoModal() == IDOK)
 {
  strPath=dlg.GetPathName();
 }
 CFile file(strPath,CFile::modeRead);
 char read[1000];
 file.Read(read,1000);
 for(int i=0;i<file.GetLength();i++)
 {
  strText += read[i];
 }
 file.Close();
 m_edit.SetWindowText(strText);
}


工作室地址:重庆石桥铺电脑城B座 | 微信:z35544216 | 网址:www.35544216.com