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
D

Don Box

@Don Box
About
Posts
158
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • unresolved external symbol _main referenced in function _mainCRTStartup
    D Don Box

    Hello All, I'm getting

    libc.lib(crt0.obj) : error LNK2019: unresolved external symbol _main referenced in function _mainCRTStartup

    error in a Win32 based application. IDE I'm using is VC++ 7 (Visual Studio .Net 2003). How it can be solved? Any help is highly appreciated.

    Come online at:- jubinc@skype

    C / C++ / MFC csharp visual-studio help c++ question

  • About ActiveX Control
    D Don Box

    See in MSDN the following:

    NOTIFYICONDATA //Struct
    Shell_NotifyIcon ()

    Come online at:- jubinc@skype

    C / C++ / MFC com tutorial question

  • stuck with progress bar
    D Don Box

    CProgressCtrl::SetRange()
    CProgressCtrl::SetStep() // Optional
    CProgressCtrl::StepIt () // Optional
    CProgressCtrl::SetPos ()
    CProgressCtrl::GetPos ()

    Use any of the above given methods.

    Come online at:- jubinc@skype

    C / C++ / MFC help question

  • Substring from a string
    D Don Box

    If CString is used, write

    CString str;
    str.Mid (str.Find (':'));

    If not using CString, write

    char* pszName = strstr (variable, ":");
    if (pszName != NULL)
    {
    pszName is valid pointer.
    }

    Come online at:- jubinc@skype

    C / C++ / MFC help question

  • extern sample in MSDN
    D Don Box

    It only shows the its usage. U'rs thinking is absolutely correct.

    Come online at:- jubinc@skype

    C / C++ / MFC c++ com question

  • Why ++++i works and i++++ does not work?
    D Don Box

    Hi all. I'm having this problem and really not getting, what is happening behind the hood. Plzz help me out in this regard. This is basic C concept.

    void main ()
    {
    int i = 0;
    ++++i; //WORKS
    i++++; //DOESN'T WORK
    }

    In the above code, ++++i (Pre-Increment) works but i++++ (Post-Increment) doesn't work. What could be the reason? Plzz explain in detail. Any Help is appreciated.

    C / C++ / MFC help question

  • File opening in Pocket Pc
    D Don Box

    CreateFile can be used.

    Come online at:- jubinc@skype

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

  • File opening in Pocket Pc
    D Don Box

    Do u want the file handle or u wanna run the application associated with the file?

    Come online at:- jubinc@skype

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

  • compile error about destructor
    D Don Box

    Cannot use __try in functions that require object unwinding

    : the above error means the usage of __try/__except is forbidden in the function which has objects which (the object) will be destroyed upon the function return.

    Come online at:- jubinc@skype

    C / C++ / MFC csharp c++ visual-studio help

  • Bug of performance counter API or perfmon tool
    D Don Box

    To big to read.:confused:

    Come online at:- jubinc@skype

    C / C++ / MFC json performance help tutorial question

  • Use inline member function to refer different levels of classes. [modified]
    D Don Box

    CMsgRecorder::SetGroupState

    seems has not been defined. Check its defination or show us the class declaration and the defination of the above function.

    Come online at:- jubinc@skype

    C / C++ / MFC help question c++ visual-studio agentic-ai

  • ShellExecute
    D Don Box

    include

    shellapi.h enclosed with <>

    (notice the '<>' instead of '""')

    Come online at:- jubinc@skype

    C / C++ / MFC question com help

  • When I draw an image to a dialog using GDI+, controls are covered by the image
    D Don Box

    U should draw the image in response to

    WM_ERASEBKGND

    message

    Come online at:- jubinc@skype

    C / C++ / MFC graphics winforms

  • need your help
    D Don Box

    Add the mentioned lib to the Source Files folder of Workspace Window.

    Come online at:- jubinc@skype

    C / C++ / MFC help tutorial

  • Debug assert error while using DoModal() ?? please help
    D Don Box

    Could u write the declaration of the class CDedJed?

    Come online at:- jubinc@skype

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

  • hide folder using dos command
    D Don Box

    That's y I mentioned, NOT SURE.

    Come online at:- jubinc@skype

    System Admin question

  • the winsock problem
    D Don Box

    Window is disappearing means some kind of exception is there. So debug and locate it.

    Come online at:- jubinc@skype

    C / C++ / MFC sysadmin help question

  • file open
    D Don Box

    Then u can do the following:- 1. Use fopen(): It is a CRT function. 2. Use CreateFile (): It is a Win32 API

    Come online at:- jubinc@skype

    C / C++ / MFC question help

  • Debug assert error while using DoModal() ?? please help
    D Don Box

    Debug more into the RunModalLoop(dwFlags) function.

    Come online at:- jubinc@skype

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

  • file open
    D Don Box

    Do u want it to be open in the notepad editor or wanna get its handle?

    Come online at:- jubinc@skype

    C / C++ / MFC question 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