Click here to Skip to main content
15,890,282 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCBCGPProp PushChar event not work Pin
MrKBA25-Mar-10 3:37
MrKBA25-Mar-10 3:37 
QuestionRe: CBCGPProp PushChar event not work Pin
CPallini25-Mar-10 3:51
mveCPallini25-Mar-10 3:51 
AnswerRe: CBCGPProp PushChar event not work Pin
MrKBA25-Mar-10 4:05
MrKBA25-Mar-10 4:05 
AnswerRe: CBCGPProp PushChar event not work Pin
tom groezer26-Mar-10 2:47
tom groezer26-Mar-10 2:47 
QuestionRe: CBCGPProp PushChar event not work Pin
CPallini26-Mar-10 2:55
mveCPallini26-Mar-10 2:55 
AnswerRe: CBCGPProp PushChar event not work Pin
Tim Craig26-Mar-10 8:37
Tim Craig26-Mar-10 8:37 
AnswerRe: CBCGPProp PushChar event not work Pin
Eugen Podsypalnikov25-Mar-10 3:52
Eugen Podsypalnikov25-Mar-10 3:52 
GeneralRe: CBCGPProp PushChar event not work Pin
MrKBA25-Mar-10 4:04
MrKBA25-Mar-10 4:04 
The class CBCGPProp is a standard class (delivered with BCGTool) and it seems like this:
class BCGCBPRODLLEXPORT CBCGPProp : public CObject
{
DECLARE_DYNAMIC(CBCGPProp)

friend class CBCGPPropList;

// Construction
public:
// Group constructor
CBCGPProp(const CString& strGroupName, DWORD_PTR dwData = 0,
BOOL bIsValueList = FALSE);

// Simple property
CBCGPProp(const CString& strName, const _variant_t& varValue,
LPCTSTR lpszDescr = NULL, DWORD_PTR dwData = 0,
LPCTSTR lpszEditMask = NULL, LPCTSTR lpszEditTemplate = NULL,
LPCTSTR lpszValidChars = NULL);

virtual ~CBCGPProp();

enum ClickArea
{
ClickExpandBox,
ClickName,
ClickValue,
ClickDescription
};

// Operations:
public:
int GetExpandedSubItems (BOOL bIncludeHidden = TRUE) const;
BOOL AddSubItem (CBCGPProp* pProp);
BOOL RemoveSubItem (CBCGPProp*& pProp, BOOL bDelete = TRUE);
.
.
.
public:
virtual BOOL OnEndEdit ();

virtual void OnClickButton (CPoint point);
virtual BOOL OnClickValue (UINT uiMsg, CPoint point);
virtual BOOL OnDblClick (CPoint point);

virtual void OnSelectCombo ();
virtual void OnCloseCombo();

virtual BOOL OnSetCursor () const;
virtual BOOL PushChar (UINT nChar);
...}

in my CSelBCGProp.cpp it seems like this :
BOOL CSelBCGProp::PushChar (UINT nChar)
{
nChar;
return true;
}
What i need is to know the character that the user enter it and make a treatment on it.
GeneralRe: CBCGPProp PushChar event not work Pin
Eugen Podsypalnikov25-Mar-10 4:12
Eugen Podsypalnikov25-Mar-10 4:12 
GeneralRe: CBCGPProp PushChar event not work Pin
MrKBA26-Mar-10 3:53
MrKBA26-Mar-10 3:53 
Questionneed vector of vectors to hold more than just a "pair" Pin
b-rad31125-Mar-10 3:34
b-rad31125-Mar-10 3:34 
AnswerRe: need vector of vectors to hold more than just a "pair" Pin
Chris Losinger25-Mar-10 3:42
professionalChris Losinger25-Mar-10 3:42 
GeneralRe: need vector of vectors to hold more than just a "pair" Pin
b-rad31125-Mar-10 3:45
b-rad31125-Mar-10 3:45 
GeneralRe: need vector of vectors to hold more than just a "pair" Pin
Chris Losinger25-Mar-10 3:58
professionalChris Losinger25-Mar-10 3:58 
GeneralRe: need vector of vectors to hold more than just a "pair" Pin
b-rad31125-Mar-10 4:00
b-rad31125-Mar-10 4:00 
AnswerRe: need vector of vectors to hold more than just a "pair" Pin
Nemanja Trifunovic25-Mar-10 5:43
Nemanja Trifunovic25-Mar-10 5:43 
QuestionCheck for validity of IP address [modified] Pin
krish_kumar25-Mar-10 2:42
krish_kumar25-Mar-10 2:42 
AnswerRe: :rose: Check for validity of IP address Pin
CPallini25-Mar-10 2:52
mveCPallini25-Mar-10 2:52 
AnswerRe: Check for validity of IP address Pin
krish_kumar25-Mar-10 2:55
krish_kumar25-Mar-10 2:55 
JokeRe: Check for validity of IP address Pin
enhzflep25-Mar-10 3:08
enhzflep25-Mar-10 3:08 
GeneralRe: Check for validity of IP address Pin
David Crow25-Mar-10 3:20
David Crow25-Mar-10 3:20 
GeneralRe: Check for validity of IP address Pin
CPallini25-Mar-10 3:48
mveCPallini25-Mar-10 3:48 
QuestionTools for reverse engineering Pin
tom groezer25-Mar-10 0:58
tom groezer25-Mar-10 0:58 
AnswerRe: Tools for reverse engineering Pin
enhzflep25-Mar-10 3:07
enhzflep25-Mar-10 3:07 
Questionerror LNK2005...already defined in .... Pin
rupeshkp72825-Mar-10 0:26
rupeshkp72825-Mar-10 0:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.