Click here to Skip to main content
15,900,511 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generaluse of CFrameWnd Pin
gucy18-Jun-03 0:40
gucy18-Jun-03 0:40 
GeneralLogonUser without Password Pin
isriniv18-Jun-03 0:22
isriniv18-Jun-03 0:22 
GeneralRe: LogonUser without Password Pin
geo_m18-Jun-03 0:45
geo_m18-Jun-03 0:45 
GeneralRe: LogonUser without Password Pin
AlexO18-Jun-03 3:58
AlexO18-Jun-03 3:58 
GeneralOne Form of Data Transfer to other Form Pin
Anonymous18-Jun-03 0:21
Anonymous18-Jun-03 0:21 
GeneralDialog box questions Pin
pani6817-Jun-03 23:53
pani6817-Jun-03 23:53 
GeneralRe: Dialog box questions Pin
skaanji18-Jun-03 0:27
skaanji18-Jun-03 0:27 
GeneralRe: Dialog box questions Pin
Ryan Binns18-Jun-03 4:01
Ryan Binns18-Jun-03 4:01 
This question was asked a few days ago... Override PreTranslateMessage() like this:

BOOL CMyDialog::PreTranslateMessage(MSG *pMsg)
{
    if((pMsg->message == WM_KEYDOWN) && (pMsg->wParam == VK_RETURN))
        pMsg->wParam = VK_TAB;
    return CDialog::PreTranslateMessage(pMsg);
}
This should work as required.


Ryan

Being little and getting pushed around by big guys all my life I guess I compensate by pushing electrons and holes around. What a bully I am, but I do enjoy making subatomic particles hop at my bidding - Roger Wright (2nd April 2003, The Lounge)

Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late - John Nichol "Point Of Impact"

Questionhow do i convert a string to LPCSTR? Pin
Member 40481317-Jun-03 23:33
Member 40481317-Jun-03 23:33 
AnswerRe: how do i convert a string to LPCSTR? Pin
Anonymous18-Jun-03 1:55
Anonymous18-Jun-03 1:55 
AnswerRe: how do i convert a string to LPCSTR? Pin
Ryan Binns18-Jun-03 4:14
Ryan Binns18-Jun-03 4:14 
Generalediting mpeg 1 question Pin
Emiliano17-Jun-03 23:29
Emiliano17-Jun-03 23:29 
GeneralActivex control in .NET Form (VS.NET 2003) Pin
Uma Mahes17-Jun-03 23:07
Uma Mahes17-Jun-03 23:07 
GeneralCEdit Control Pin
Anonymous17-Jun-03 22:50
Anonymous17-Jun-03 22:50 
GeneralRe: CEdit Control Pin
AlexO18-Jun-03 3:53
AlexO18-Jun-03 3:53 
GeneralRe: CEdit Control Pin
justin22318-Jun-03 3:59
justin22318-Jun-03 3:59 
GeneralDouble network interface Pin
Anonymous17-Jun-03 22:48
Anonymous17-Jun-03 22:48 
GeneralRe: Double network interface Pin
Ryan Binns17-Jun-03 23:20
Ryan Binns17-Jun-03 23:20 
GeneralWM_CTLCOLOR Pin
gucy17-Jun-03 22:05
gucy17-Jun-03 22:05 
GeneralRe: WM_CTLCOLOR Pin
Vipin Bokariya17-Jun-03 22:45
Vipin Bokariya17-Jun-03 22:45 
GeneralRe: WM_CTLCOLOR Pin
Toni7817-Jun-03 22:46
Toni7817-Jun-03 22:46 
GeneralRe: WM_CTLCOLOR Pin
Ryan Binns17-Jun-03 23:25
Ryan Binns17-Jun-03 23:25 
GeneralRe: WM_CTLCOLOR Pin
gucy18-Jun-03 0:51
gucy18-Jun-03 0:51 
GeneralRe: WM_CTLCOLOR Pin
Ryan Binns18-Jun-03 4:15
Ryan Binns18-Jun-03 4:15 
Generalquesion about link Pin
gucy17-Jun-03 21:08
gucy17-Jun-03 21:08 

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.