Search:
Type: Posts; User: Emi
Search :
Search took 0.09 seconds.
Hi,
I'm not sure what you want to do but take a look at CurrentCell Property as well.
Hi,
You can disable this warning using
#if (__midl >= 501)
midl_pragma warning( disable: 2362 )
#endifLook in MSDN at Q241849
http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnarvc/html/msdn_mfcfaq50.asp
Look for How do I get a list of open documents?
March 25th, 2003 02:59 PM
Hi,
Look at WM_GETMINMAXINFO.
March 25th, 2003 02:33 PM
Hi,
Start with: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/avicap_3bfs.asp
March 25th, 2003 02:30 PM
Use recursive methods/functions.
Look at this sample
http://www.codeguru.com/forum/showthread.php?s=&threadid=227926
March 25th, 2003 02:18 PM
keybd_event(VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY | 0, 0 );
keybd_event(VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
short s = GetKeyState(VK_NUMLOCK);
if ((s & 1))...
March 25th, 2003 01:58 PM
Hi,
Try using memory DCs.
March 25th, 2003 01:55 PM
Hi,
12010 ERROR_INTERNET_BAD_OPTION_LENGTH
The length of an option supplied to InternetQueryOption
or InternetSetOption is incorrect for the type of option specified.
Check...
March 25th, 2003 11:58 AM
If you have a pointer to the main wnd in your dialog then call invalidate in OnOK (pMainWnd->InvalidateRect(...)). Otherwise call invalidate for the main wnd after DoModal is finished.
March 25th, 2003 11:55 AM
Did you look at the link I send? There is a sample for how to use FindFirstFile, FindNextFile.
March 25th, 2003 11:51 AM
March 25th, 2003 11:42 AM
Hi,
Look at WM_COPYDATA in MSDN. Also at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/dataexchange/datacopy/usingdatacopy.asp
March 25th, 2003 11:41 AM
Hi,
After closing the dialog try to invalidate the main window. Look at CWnd::InvalidateRect or SDK
BOOL InvalidateRect(
HWND hWnd, // handle to window
CONST RECT* lpRect, //...
March 24th, 2003 09:27 PM
Hi,
Try using CreateProcess and set STARTUPINFO member wShowWindow to SW_HIDE.
See
BOOL CreateProcess(
LPCTSTR lpApplicationName, // name of executable module
LPTSTR...
March 24th, 2003 09:22 PM
Hi,
Start looking at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/retrieving_and_changing_file_attributes.asp
For a class who deals with file in MFC look at...
March 24th, 2003 09:16 PM
Maybe because you forgot to move the cursor...
//res is a CRecordset * that is at the first row//
//get the field by name//
CString sSourceField = "SOMEFIELD";
CString sSourceValue;...
March 24th, 2003 08:53 PM
Hi,
Look @ http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B241218
March 18th, 2003 04:29 PM
Hi Sam,
I don't know if you already took an eye at http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q190961
March 18th, 2003 04:21 PM
Hi Usman,
Look at
COLORREF TreeView_SetBkColor(
HWND hwndTV
COLORREF clrBk;
);
March 13th, 2003 09:40 AM
Use CString::Format. See in MSDN for details.
March 11th, 2003 10:04 AM
Hi,
Look at
int GetWindowText(
HWND hWnd, // handle to window or control
LPTSTR lpString, // text buffer
int nMaxCount // maximum number of characters to copy
);
March 11th, 2003 09:59 AM
Hi,
BOOL GetOpenFileName(
LPOPENFILENAME lpofn // initialization data
);
Look in MSDN for details.
March 11th, 2003 08:41 AM
Hi,
You have several ways to do that.
1. Look at Task Manager and see how much memory your app are using
2. Use Debug Routines functions. Look in MSDN at
void _CrtMemCheckpoint(
...
March 11th, 2003 07:56 AM
Can you specify the error?
Click Here to Expand Forum to Full Width