November 10th, 2011 07:14 AM
Hi - I have some design problem. I made my Template Class:
class CParam : CParamI {
public:
T operator=( T val ) {
value = val;
return value;
}
November 30th, 2010 06:25 AM
Hi - I have some problems with printing. I made simple report, that needs to be printed. Everything was ok till I changed the printer - the printout doesn't fit the paper it's twice bigger. I have a...
August 10th, 2010 04:39 AM
My problem still exist. Above solutions didnt'work. I tried with
lista.CreateEx( WS_EX_TOPMOST | WS_EX_TOOLWINDOW | WS_EX_STATICEDGE, _T("LISTBOX"), NULL, WS_CHILD | LBS_STANDARD | WS_HSCROLL |...
April 27th, 2010 05:42 AM
but doesn't it block my main loop ?
April 27th, 2010 04:56 AM
about AfxEndThread - http://msdn.microsoft.com/en-us/library/s96hway2%28VS.80%29.aspx
"Must be called from within the thread to be terminated." - so I used it.
and about message loop - do I need to...
April 27th, 2010 04:10 AM
Hi - I have problem with receiving a message sent by PostThreadMessage. I'm posting message from main application class (CWinApp). I'm posting it to my class derived from CWinThread. Part of my...
December 9th, 2008 05:41 AM
Hi
I'm creating my own control. I dynamically creating CListBox over the other controls - it's my combo list control. My problem is that controls from behind my CListBox (eg. CEdit controls)...
September 9th, 2008 04:36 AM
My application is MDI. I need to react on function keys F1-F12 but not in every window separately - but globally in application. I think that WM_KEYUP/DOWN/PRESSED working only on controls that have...
September 9th, 2008 04:24 AM
I've got a problem with displaying modal dialog after key pressing. I'm doing it in thath way: first any key pressing is receiving in PreTranslateMessage function. Then i'm sending new user message...
August 29th, 2007 01:26 AM
It is Visual C++ 2005 Windows Application MFC Project...
August 28th, 2007 06:45 AM
In fact, after my changes it works until db.open. Now I have linker error:
error LNK2019: unresolved external symbol "public: virtual int __thiscall Db::open(class DbTxn *,char const *,char const...
August 28th, 2007 06:12 AM
I found solution:
#define DBTYPE BDBTYPE
#undef DB_UNKNOWN
#include <db_cxx.h>
#undef DBTYPE
but I don't if it is correct ??
August 28th, 2007 05:21 AM
Hi
I've just downloaded and installed the most new version of Oracle BerkeleyDB (msi packet). No I'm trying to include <db_cxx.h> header file in my project (after set correct folders for includes...