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
S

stolid_rock

@stolid_rock
About
Posts
15
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 'ICC_STANDARD_CLASSES' : undeclared identifier
    S stolid_rock

    Hi I am using a rih edit control in my SDK app. So when i was executing the app i got the "Cannot find window class" error when i tried to call CreateDialog(..). So i did the following INITCOMMONCONTROLSEX init; memset(&init, 0, sizeof(init)); init.dwSize = sizeof(INITCOMMONCONTROLSEX); init.dwICC = ICC_STANDARD_CLASSES; InitCommonControlsEx(&init); Now i get an error that 'ICC_STANDARD_CLASSES' : undeclared identifier even when commctrl.h and comctl32.lib are properly used.

    C / C++ / MFC help

  • convert int to char??
    S stolid_rock

    use itoa() function

    C / C++ / MFC question

  • Event after ShowWindow()
    S stolid_rock

    Is there any message indicating that the window has been shown for the first time? CWnd::PreCreateWindow method is called by the framework before the creation of the window attached to this CWnd object

    C / C++ / MFC help question

  • How to execute this
    S stolid_rock

    Try this string sFile(_T("regsvr32")); string sParam(_T("/u \"F:\\Data\\MAPIProp\\mapiprop.dll\"")); ::ShellExecute(NULL,_T("open"),sFile.c_str(),sParam.c_str(),0,SW_SHOW);

    C / C++ / MFC tutorial question

  • C++ Standards
    S stolid_rock

    See the http://www.csc.lsu.edu/~kosmas/C++guidelines.pdf[^]:-D

    C / C++ / MFC c++ question

  • How to import class from a dll?
    S stolid_rock

    View this link http://www.codeproject.com/dll/classesexportedusingLL.asp[^]

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

  • Can Use VirtualAllocEx( ) to Get Memory from Other Process?
    S stolid_rock

    For performing some write operations in memory allocated by VirtualAllocEx() use WriteProcessMemory() function. Other functions often raise an exception when used to write in memory of another process.

    C / C++ / MFC help performance question

  • Anyway to know the prototype of functions exported by a DLL
    S stolid_rock

    Thanks Anyway... I thought someone may have some idea of making it possible.

    C / C++ / MFC

  • Anyway to know the prototype of functions exported by a DLL
    S stolid_rock

    Hi i have tried utilities like Dumpbin, OLEview, DEPENDS but we only get the function names. Is there any way to know the prototype of a function exported by a DLL.

    C / C++ / MFC

  • Console Full Screen Mode
    S stolid_rock

    You will have to use the SetConsoleWindowInfo function to set the size. But before that you have to use functions like GetConsoleWindow, GetConsoleScreenBufferInfo for the actual effect to take place.

    C / C++ / MFC c++

  • File I/O : Which one to use? CFile or fstream?
    S stolid_rock

    You can get some basic implementations at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HTML/\_core\_files\_in\_mfc.asp and http://www.codersource.net/mfc\_cfile.html

    C / C++ / MFC c++ question

  • File I/O : Which one to use? CFile or fstream?
    S stolid_rock

    I suggest you should use the CFile rather than fstream. You can do lots of things using the functionality CFile provides

    C / C++ / MFC c++ question

  • How to unload dlls
    S stolid_rock

    To load and unload libraries use LoadLibrary and FreeLibrary functions.

    C / C++ / MFC tutorial

  • How to get application currently activated
    S stolid_rock

    I think u will have to use hooks. Try this link http://www.codeproject.com/dll/hooks.asp

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

  • WM_KILLFOCUS
    S stolid_rock

    Hi there, All you have to do is create a handler for trapping the EN_KILLFOCUS so that you get the message that the edit control is loosing the focus. So inside the handler put the MessageBox that you want to popup. When the user clicks on OK on the dialog box, edit control looses the focus. So to ensure that the focus is on the edit control, create a control variable for the edit control suppose(m_control) do the following after the statement following the MessageBox CPoint set(0,0); m_control.SetFocus(); m_control.SetCaretPos(set); :)

    C / C++ / MFC help
  • Login

  • Don't have an account? Register

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