OnSelectionChange() will be get called but you can return without doing anything if row selection count in more than 1.
-@SuDhIrKuMaR@-
OnSelectionChange() will be get called but you can return without doing anything if row selection count in more than 1.
-@SuDhIrKuMaR@-
Do you need this implimentation in Explorer window?
-@SuDhIrKuMaR@-
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@-
http://www.devhood.com/Tutorials/tutorial_details.aspx?tutorial_id=501[^]
-@SuDhIrKuMaR@-
Try this way-> with selecting NULL Brush SelectObject(hDC,GetStockObject(NULL_BRUSH)); or with MemDC m_MemDC.SelectStockObject(NULL_BRUSH);
-@SuDhIrKuMaR@-
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@-
Try NOD32 It is due to some virus or torjan.
-@SuDhIrKuMaR@-
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@-
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@-
http://www.codeproject.com/KB/miscctrl/progresswnd.aspx[^] Check for modal progress bar.
-@SuDhIrKuMaR@-
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@-
I think its not possible.
-@SuDhIrKuMaR@-
http://www.codeproject.com/KB/system/DigitalCameraConn.aspx[^] Just Try this link.
-@SuDhIrKuMaR@-
This is a VC++ forum buddy.
-@SuDhIrKuMaR@-
What are the problems you are facing?
-@SuDhIrKuMaR@-
Why you are using ReciveFrom not Revice?
-@SuDhIrKuMaR@-
http://www.codeproject.com/KB/static/analogclock.aspx[^] If you don't need winows analog clock.
-@SuDhIrKuMaR@-
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@-
http://www.codeproject.com/KB/files/ANSI-UNICODE_conversion.aspx[^] May be this can help you.
-@SuDhIrKuMaR@-