Click here to Skip to main content
15,913,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to delete CStatic object. Pin
Code-o-mat2-Apr-09 4:03
Code-o-mat2-Apr-09 4:03 
QuestionCPoint's x and y has large value Pin
nayeemkhan1-Apr-09 20:38
nayeemkhan1-Apr-09 20:38 
AnswerRe: CPoint's x and y has large value Pin
Stuart Dootson1-Apr-09 21:52
professionalStuart Dootson1-Apr-09 21:52 
GeneralRe: CPoint's x and y has large value Pin
nayeemkhan1-Apr-09 22:03
nayeemkhan1-Apr-09 22:03 
GeneralRe: CPoint's x and y has large value Pin
Stuart Dootson1-Apr-09 22:06
professionalStuart Dootson1-Apr-09 22:06 
AnswerRe: CPoint's x and y has large value Pin
Cedric Moonen1-Apr-09 22:07
Cedric Moonen1-Apr-09 22:07 
GeneralRe: CPoint's x and y has large value Pin
nayeemkhan1-Apr-09 23:22
nayeemkhan1-Apr-09 23:22 
GeneralRe: CPoint's x and y has large value Pin
Niklas L2-Apr-09 3:02
Niklas L2-Apr-09 3:02 
GeneralRe: CPoint's x and y has large value Pin
David Crow2-Apr-09 3:47
David Crow2-Apr-09 3:47 
AnswerRe: CPoint's x and y has large value Pin
Code-o-mat1-Apr-09 22:42
Code-o-mat1-Apr-09 22:42 
AnswerRe: CPoint's x and y has large value Pin
krmed2-Apr-09 0:43
krmed2-Apr-09 0:43 
QuestionRe: CPoint's x and y has large value Pin
David Crow2-Apr-09 3:45
David Crow2-Apr-09 3:45 
QuestionHow to create a secure database with the MS-Jet ODBC driver [modified] Pin
pani681-Apr-09 20:35
pani681-Apr-09 20:35 
AnswerRe: How to create a secure database with the MS-Jet ODBC driver [modified] Pin
Stuart Dootson1-Apr-09 22:43
professionalStuart Dootson1-Apr-09 22:43 
GeneralRe: How to create a secure database with the MS-Jet ODBC driver Pin
pani682-Apr-09 2:20
pani682-Apr-09 2:20 
GeneralRe: How to create a secure database with the MS-Jet ODBC driver Pin
Stuart Dootson2-Apr-09 2:22
professionalStuart Dootson2-Apr-09 2:22 
QuestionHow to convert const void* to CString? Pin
g_satish1-Apr-09 20:26
g_satish1-Apr-09 20:26 
AnswerRe: How to convert const void* to CString? Pin
«_Superman_»1-Apr-09 20:30
professional«_Superman_»1-Apr-09 20:30 
AnswerRe: How to convert const void* to CString? Pin
Stuart Dootson1-Apr-09 21:56
professionalStuart Dootson1-Apr-09 21:56 
QuestionHow to capture "Enter Key"? Pin
gothic_coder1-Apr-09 20:25
gothic_coder1-Apr-09 20:25 
AnswerRe: How to capture "Enter Key"? Pin
«_Superman_»1-Apr-09 20:32
professional«_Superman_»1-Apr-09 20:32 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder1-Apr-09 20:36
gothic_coder1-Apr-09 20:36 
AnswerRe: How to capture "Enter Key"? Pin
Code-o-mat1-Apr-09 22:32
Code-o-mat1-Apr-09 22:32 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder1-Apr-09 23:29
gothic_coder1-Apr-09 23:29 
Code-o-mat wrote:
Hey!

On a side note: having a button that gets enabled when a correct password is entered makes it a bit easier to guess the password by bruteforce (or/and maybe other methods) because one only has to write a program that enters a password and then checks the state of the button, if it is disabled, it tries the next possible password and checks the button again until the button becomes enabled... althorough you can add a -let's say- 3 seconds pause if a wrong password is entered before the user is allowed to enter the next password, this makes it take much much more time to hack.


That's not the issue Smile | :)


Code-o-mat wrote:
Aside of this, did you try handling WM_KEYDOWN? Did it work?


Yes i did.. But it's not working, i tried WM_CHAR also same result

case WM_CHAR : 
{
	switch(LOWORD(wParam))
	{
		case VK_RETURN:
			MessageBox(hWnd, "Enter Pressed", NULL, NULL);
	}
}


case WM_KEYDOWN : 
{
	switch(LOWORD(wParam))
	{
		case VK_RETURN:
			MessageBox(hWnd, "Enter Pressed", NULL, NULL);
	}
}


P.S
BTW the default focus is in password (Edit) box only, Does this create any problem?
GeneralRe: How to capture "Enter Key"? Pin
Code-o-mat1-Apr-09 23:33
Code-o-mat1-Apr-09 23:33 

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.