Click here to Skip to main content
15,922,309 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Concatonate Integer Pin
Stuart Dootson26-Sep-09 6:59
professionalStuart Dootson26-Sep-09 6:59 
GeneralRe: Concatonate Integer Pin
Herboren26-Sep-09 7:00
Herboren26-Sep-09 7:00 
GeneralRe: Concatonate Integer Pin
«_Superman_»26-Sep-09 7:01
professional«_Superman_»26-Sep-09 7:01 
GeneralRe: Concatonate Integer Pin
Herboren26-Sep-09 7:11
Herboren26-Sep-09 7:11 
Questionimage size and type Pin
Tara1426-Sep-09 5:50
Tara1426-Sep-09 5:50 
AnswerRe: image size and type Pin
CPallini26-Sep-09 11:16
mveCPallini26-Sep-09 11:16 
QuestionHow can I correct MFC focus problem after closing HtmlHelp window? Pin
Tom M26-Sep-09 2:51
Tom M26-Sep-09 2:51 
AnswerRe: How can I correct MFC focus problem after closing HtmlHelp window? Pin
Richard MacCutchan26-Sep-09 3:50
mveRichard MacCutchan26-Sep-09 3:50 
QuestionGoogle map from lat/long Pin
colemans26-Sep-09 2:50
colemans26-Sep-09 2:50 
AnswerRe: Google map from lat/long Pin
Stuart Dootson26-Sep-09 4:35
professionalStuart Dootson26-Sep-09 4:35 
GeneralRe: Google map from lat/long Pin
tiresias226-Sep-09 11:37
tiresias226-Sep-09 11:37 
GeneralRe: Google map from lat/long Pin
Stuart Dootson26-Sep-09 11:59
professionalStuart Dootson26-Sep-09 11:59 
GeneralRe: Google map from lat/long Pin
tiresias226-Sep-09 13:06
tiresias226-Sep-09 13:06 
GeneralRe: Google map from lat/long Pin
Stuart Dootson26-Sep-09 13:09
professionalStuart Dootson26-Sep-09 13:09 
GeneralRe: Google map from lat/long Pin
tiresias227-Sep-09 12:09
tiresias227-Sep-09 12:09 
QuestionWhat is the key code for PowerOff/SwitchOff button for Windows mobile.. [modified] Pin
Rushikesh12326-Sep-09 1:35
Rushikesh12326-Sep-09 1:35 
Questionrtd client Pin
trioum26-Sep-09 0:30
trioum26-Sep-09 0:30 
AnswerRe: rtd client Pin
CPallini26-Sep-09 2:22
mveCPallini26-Sep-09 2:22 
GeneralRe: rtd client Pin
trioum26-Sep-09 2:47
trioum26-Sep-09 2:47 
AnswerRe: rtd client Pin
Rajesh R Subramanian26-Sep-09 9:36
professionalRajesh R Subramanian26-Sep-09 9:36 
Questionwin mobile 6.1 whether or not Support audio compression manager? Pin
wgh1689925-Sep-09 19:41
wgh1689925-Sep-09 19:41 
Questionprohibit some character on edit box VC 6.0[solved] Pin
Eka Candra25-Sep-09 19:25
Eka Candra25-Sep-09 19:25 
AnswerRe: prohibit some character on edit box VC 6.0 Pin
theCPkid25-Sep-09 19:58
theCPkid25-Sep-09 19:58 
Check ON_EN_UPDATE message handler. Sent after the control has formatted the text but before it displays the text so that the window size can be altered, if necessary.

check this

Or In PreTranslateMessage(inside parent of edit box), you can do check for prohibited character -

if(pMsg->message == WM_KEYDOWN && pMsg->wParam == PROHIBITED_CHARACTER && pMsg->hWnd == MY_EDIT_BOX_WINDOW)
{
    return TRUE; //do not let windows process this message.
}

GeneralRe: prohibit some character on edit box VC 6.0 Pin
Eka Candra25-Sep-09 20:25
Eka Candra25-Sep-09 20:25 
AnswerRe: prohibit some character on edit box VC 6.0[solved] Pin
Iain Clarke, Warrior Programmer25-Sep-09 20:52
Iain Clarke, Warrior Programmer25-Sep-09 20:52 

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.