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
Q

qfegd

@qfegd
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Capturing Events
    Q qfegd

    WaitForsingleObject http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/waitforsingleobject.asp[^] Eric Premature optimization is the root of all evil

    ATL / WTL / STL c++ help

  • fstream help
    Q qfegd

    In those situation stringstream can be cool! http://www.cplusplus.com/ref/iostream/stringstream/[^] Here is the code to read one line in your file and to compute the average score. std::ifstream ifs("FileName", std::ios::in); char buffer[255]; ifs.getline(buffer, 255); std::istringstream iss(buffer); char n1[255]; char n2[255]; double grade, mean=0.0; int nGrade = 0; iss >> n1 >> n2; for(; iss >> grade; ++nGrade) mean += grade; mean /= nGrade; ifs.close(); // end Now figure a way to do this for the whole file :) Eric Premature optimization is the root of all evil

    Managed C++/CLI help question

  • Loading resources?
    Q qfegd

    You can also use AfxFormatString1 & AfxFormatString2 if your resource HELLO_ID is: "Hello %1" you can do: CString result; AfxFormatString1(result HELLO_ID, "World"); it gives u Hello World Eric Premature optimization is the root of all evil

    C / C++ / MFC question com

  • MFC CHM Reference
    Q qfegd

    There is microsoft documentation http://msdn.microsoft.com/library[^] lokk for MFC reference eric Premature optimization is the root of all evil

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

  • what is a smart pointer
    Q qfegd

    it mean: Everywhere you go, glory will follow Premature optimization is the root of all evil

    C / C++ / MFC question com

  • what is a smart pointer
    Q qfegd

    qfegd = quo fas et gloria ducunt

    C / C++ / MFC question com

  • totally confused about UINT_PTR
    Q qfegd

    There is 2 definitions for UINT_PTR: if _WIN64 is defined it is a unsigned __int64 (a integer on 64 bit) if not it is defined as an unsigned int (a integer on 32 bit) Eric

    C / C++ / MFC question

  • what is a smart pointer
    Q qfegd

    Take a look at the boost documentation. http://www.boost.org/libs/smart_ptr/smart_ptr.htm[^] Eric

    C / C++ / MFC question com
  • Login

  • Don't have an account? Register

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