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
Y

yndfcd

@yndfcd
About
Posts
10
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • About Turbo C
    Y yndfcd

    Hi,all. I'm a Chinese college student.I'm studying Computer Sciene in a school in China. The problem is almost all school use Turbo C 2.0 as the main compiler when they teach C language course. And thus, almost all beginners think the Turbo C is the essence of learning C language,and they start by using it.Still a lot of people think that Turbo C is the main developement tool.And for C++ beginners , they also think that they should beginner with Turbo C. So,What do you think of this problem?Does this create problems? What do use when you a beginner? And What compiler do you think is suitable for a beginner?

    C / C++ / MFC learning c++ help question

  • how to find whether a file already exists in a folder?
    Y yndfcd

    WIN32_FIND_DATA wsd; HANDLE hFind = FindFirstFile(pszFileName, &wsd); if(hFind != NULL) { //the file does exist }else{ MessageBox(NULL, "Error", "The specified file does not exist.",MB_OK); } FindClose(hFind);

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

  • some doubts about PeekMessage
    Y yndfcd

    No.You can't do that either.

    C / C++ / MFC com json question

  • Catching clicking
    Y yndfcd

    Add a button on the dialog use dialog editor, and appoint the same ID as you call CButton::Create.Than you can add message handler for that button.After a the message handler has been added, you can delete that button on the dialog, and create it at run-time. Note:using the same ID is crucial. This is very tricky techniques.

    C / C++ / MFC question tutorial

  • Need help displaying Chinese characters in a CListCtrl
    Y yndfcd

    You need a Chinese Operation System.

    C / C++ / MFC help

  • wm_create problems
    Y yndfcd

    In fact it's CS_GLOBALCLASS,I've forgotten a word. When you call CreateWindow or CreateWindowEx,the function will compare the hInstance you passed to it to the hInstance of the WNDCLASSEX hInstance field. Set the style field to CS_GLOBALCLASS tells the function that it should not compare these two values.

    C / C++ / MFC help graphics game-dev question learning

  • some doubts about PeekMessage
    Y yndfcd

    Console Applications don't recieve windows messages.

    C / C++ / MFC com json question

  • How to get HMODULE/HINSTANCE handle of a different application?
    Y yndfcd

    The second parameter is NOT the HINSTANCE of the appliction you want to hook, but the HINSTANCE of the dll contaning the hook procedure. so you can write a DllMain function, and store the HINSTANCE of the dll in a global viriable.when you call SetWindowsHookEx, use the global viriable as the second parameter.

    C / C++ / MFC help tutorial question

  • wm_create problems
    Y yndfcd

    Add this line to your code wc.style = CS_GLOBAL; //initial other fields RegisterClassEx(&wc);

    C / C++ / MFC help graphics game-dev question learning

  • What are the advantages of a string table?
    Y yndfcd

    Using string table, you can switch user interface between deferent languages. Is this an advantage?

    C / C++ / MFC question
  • Login

  • Don't have an account? Register

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