正在阅读:编程必备:VC常用知识重温编程必备:VC常用知识重温

2004-11-12 10:34 出处:CSDN 作者:hongyang1980 责任编辑:linjixiong

  这次我们将会带大家再次回顾一下VC的常用知识,包括得到系统时间日期(使用GetLocalTime)、分离字串等。
  
  1: 得到系统时间日期(使用GetLocalTime)


  CString sTime,sYear,sMonth,sDay;
  SYSTEMTIME CurTime;
  GetLocalTime(&CurTime);
  sYear.Format("%d年",CurTime.wYear);
  sMonth.Format("%d月",CurTime.wMonth);
  sDay.Format("%d日",CurTime.wDay);
  sTime =  sYear+ sMonth + sDay;
  // CurTime.wHour
  // CurTime.wMinute
  // CurTime.wSecond IBM的
  AfxMessageBox(sTime);


  
  2: 分离字串


  CString str = "4d3f0a2278";
  unsigned char a[12];
  long x;
  for(int i = 0;i< (str.GetLength()/2);i++)
  {
  sscanf(str.Mid(2*i,2),"%x",&x);
  a[i] = x;
  }

  3: 得到当前目录 (GetCurrentDirectory)


  char  CurPath[MAX_PATH];
  DWORD size=MAX_PATH;
  GetCurrentDirectory(size,CurPath);
  AfxMessageBox(CurPath);
  
  //
  CString number;
  int len = LineLength(LineIndex(0));
  LPTSTR p=number.GetBuffer(len);
  this->GetLine(0,p,len);
  AfxMessageBox(number);
  得到系统目录 (GetSystemDirectory)

  4: 从字符串中提取数字


  CString strNum;
  CString str("测试125各国87kk");
  strNum = GetStr(str);
  AfxMessageBox(strNum);


  
  5: 创建无模对话框


  CDlg_Test *aa = new CDlg_Test;
  aa->Create(IDD_DIALOG1,NULL);
  aa->ShowWindow(SW_SHOW);


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:

键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品