Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

A_xin

@A_xin
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to find how many strings are present?
    A A_xin

    /*Function call () that assigns some strings*/ CString * GetstrArray(int len) { CString *re; re=new CString[len]; //input your string return re; } CString *strArray; int len=4; strArray=GetstrArray(len); for(i=0;i<len&&strArray[i]!="";i++) { ::AfxMessageBox(strArray[i]); } delete []strArray; or /*Function call () that assigns some strings*/ CString * GetstrArray(int &len) { CString *re; int inlen=1; inlen=4;//you can change the value re=new CString[inlen]; //input your string len=inlen; return re; } CString *strArray; int i; int len; strArray=GetstrArray(len); for(i=0;i<len&&strArray[i]!="";i++) { ::AfxMessageBox(strArray[i]); } delete []strArray; modified on Friday, March 13, 2009 7:01 AM

    modified on Friday, March 13, 2009 7:19 AM

    C / C++ / MFC help c++ tutorial question

  • query
    A A_xin

    system("pause");

    C / C++ / MFC c++ database tutorial

  • Setting Window Name in CWnd Object
    A A_xin

    FindWindowEx

    C / C++ / MFC question

  • Multithreading C++
    A A_xin

    you can learn linux. it is a good way. ;)

    C / C++ / MFC c++

  • char[] to CString conversion
    A A_xin

    str[0]=''; error C2137: empty character constant(vc6.0) str[0]='\0'; is right :-D

    C / C++ / MFC question

  • how to change title of a child dialog?
    A A_xin

    void CFdView::OnDraw(CDC* pDC) { CFdDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); // TODO: add draw code for native data here this->GetDocument()->SetTitle("your title"); }

    C / C++ / MFC tutorial question

  • Screen Capturing in JPG format and not Bitmap
    A A_xin

    you can use CxImage class.CxImage is a C++ class to load, save, display, transform BMP, JPEG, GIF, PNG, TIFF, MNG, ICO, PCX, TGA, WMF, WBMP, JBG, J2K images

    C / C++ / MFC graphics sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups