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

sudhir_Kumar

@sudhir_Kumar
About
Posts
116
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • CtrlList - selectionchange
    S sudhir_Kumar

    OnSelectionChange() will be get called but you can return without doing anything if row selection count in more than 1.

    -@SuDhIrKuMaR@-

    C / C++ / MFC help question

  • Mouse Right Click
    S sudhir_Kumar

    Do you need this implimentation in Explorer window?

    -@SuDhIrKuMaR@-

    C / C++ / MFC question help

  • CString Format Help
    S sudhir_Kumar

    use temp.Format("%-50s %10s %s\r\n", m_list.GetItemText(index, 0), "-", m_list.GetItemText(index, 2)); May be thi can help you.

    -@SuDhIrKuMaR@-

    C / C++ / MFC help database tutorial

  • How can disable Move option from System Menu?
    S sudhir_Kumar

    http://www.devhood.com/Tutorials/tutorial_details.aspx?tutorial_id=501[^]

    -@SuDhIrKuMaR@-

    C / C++ / MFC question

  • How to draw a transperent ellipse or an hollow ellipse?
    S sudhir_Kumar

    Try this way-> with selecting NULL Brush SelectObject(hDC,GetStockObject(NULL_BRUSH)); or with MemDC m_MemDC.SelectStockObject(NULL_BRUSH);

    -@SuDhIrKuMaR@-

    C / C++ / MFC question graphics tutorial

  • Windows Based Calculator
    S sudhir_Kumar

    This looks like your homework/project question you posted as it is on forum. -> Where is screen shot. I suggest do your homework by urself.

    -@SuDhIrKuMaR@-

    C / C++ / MFC c++

  • devenv.exe Problem
    S sudhir_Kumar

    Try NOD32 It is due to some virus or torjan.

    -@SuDhIrKuMaR@-

    C / C++ / MFC help question

  • Minimize in MDI application
    S sudhir_Kumar

    If you create a sample MDI application. ->Open three childs with three time click on new Menu ->Minimize two and maximixe third one ->After maxize you can not see the other two minimized childs ->Go to Winows menu of Application ->you can see the all three names of the child frame in menu with maximize one as checked state ->you can click on the menu to maximize or see other child frames

    -@SuDhIrKuMaR@-

    C / C++ / MFC question help

  • Minimize in MDI application
    S sudhir_Kumar

    Child frame are not displayed in Task Bar, When you minimize the child frame they are minimized to Left down cornor of MainFrame window.

    -@SuDhIrKuMaR@-

    C / C++ / MFC question help

  • CDialog wipes out when switching to a different application
    S sudhir_Kumar

    http://www.codeproject.com/KB/miscctrl/progresswnd.aspx[^] Check for modal progress bar.

    -@SuDhIrKuMaR@-

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

  • User interface
    S sudhir_Kumar

    http://www.amazon.com/MFC-Internals-Microsoft-Foundation-Architecture/dp/0201407213[^]

    -@SuDhIrKuMaR@-

    C / C++ / MFC c++ asp-net design learning

  • Window Refresh problem
    S sudhir_Kumar

    This is because it is getting painted twice for every WM_PAINT it receives. The problem is the WM_ERASEBKGND message, which is sent every time we call BeginPaint. This isn't a problem really - Windows is doing us a favour, because the default action for WM_ERASEBKGND is to draw a nice window background for us (using the window's default background brush), which we can then paint on top of in the WM_PAINT handler. However, our WM_PAINT handler also draws the control's background, so there is no point in this happening twice. Therefore, we need to prevent the default WM_ERASEBKGND behaviour from happending. As usual, there are a number of ways to do this. Set the window's background brush to NULL. (Set the hbrBackground member of the WNDCLASS structure to zero when you register the window class). Return non-zero in the WM_ERASEBKGND message handler.

    -@SuDhIrKuMaR@-

    C / C++ / MFC help

  • Lock program name while execution
    S sudhir_Kumar

    I think its not possible.

    -@SuDhIrKuMaR@-

    C / C++ / MFC question

  • capGrabFrame!!! How can i get the Frame?
    S sudhir_Kumar

    http://www.codeproject.com/KB/system/DigitalCameraConn.aspx[^] Just Try this link.

    -@SuDhIrKuMaR@-

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

  • Echoes of MSDN?
    S sudhir_Kumar

    This is a VC++ forum buddy.

    -@SuDhIrKuMaR@-

    C / C++ / MFC com question

  • How can add Calculator?
    S sudhir_Kumar

    What are the problems you are facing?

    -@SuDhIrKuMaR@-

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

  • problem with ReceiveFrom() function
    S sudhir_Kumar

    Why you are using ReciveFrom not Revice?

    -@SuDhIrKuMaR@-

    C / C++ / MFC help sysadmin question

  • How to include analog clock in Dialog based applicton in MFC
    S sudhir_Kumar

    http://www.codeproject.com/KB/static/analogclock.aspx[^] If you don't need winows analog clock.

    -@SuDhIrKuMaR@-

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

  • problem with ReceiveFrom() function
    S sudhir_Kumar

    CListenSocket::OnReceive(int nErrorCode) { char buff[100]; memset(buff,0,sizeof(buff)); if (nErrorCode) { Message.Format("OnReceive nErrorCode: %i", nErrorCode); AfxMessageBox(Message); return; } int Size = ReceiveFrom(buff, 100,IPAddress,Port); CAsyncSocket::OnReceive(nErrorCode); } Just try this way.

    -@SuDhIrKuMaR@-

    C / C++ / MFC help sysadmin question

  • Converting ASCII file format to unicode file format.
    S sudhir_Kumar

    http://www.codeproject.com/KB/files/ANSI-UNICODE_conversion.aspx[^] May be this can help you.

    -@SuDhIrKuMaR@-

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