Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to add windows type properties to our own files..? Pin
harinath27-May-03 1:29
professionalharinath27-May-03 1:29 
GeneralRe: how to add windows type properties to our own files..? Pin
harinath27-May-03 1:37
professionalharinath27-May-03 1:37 
GeneralProblem by using Property Page as a Dialog Pin
praveenpnayak27-May-03 0:49
praveenpnayak27-May-03 0:49 
GeneralRe: Problem by using Property Page as a Dialog Pin
Rage27-May-03 1:02
professionalRage27-May-03 1:02 
GeneralRe: Problem by using Property Page as a Dialog Pin
praveenpnayak27-May-03 1:27
praveenpnayak27-May-03 1:27 
GeneralRe: Problem by using Property Page as a Dialog Pin
Rage27-May-03 2:33
professionalRage27-May-03 2:33 
GeneralRe: Problem by using Property Page as a Dialog Pin
Renjith Ramachandran27-May-03 4:09
Renjith Ramachandran27-May-03 4:09 
GeneralRe: Problem by using Property Page as a Dialog Pin
praveenpnayak28-May-03 0:11
praveenpnayak28-May-03 0:11 
Thanks guyz for helping. I have found a the solutions. The below code would solve my problem.

BOOL MyPropPage::PreTranslateMessage(MSG* pMsg)
{
if( pMsg && (pMsg->message == WM_KEYDOWN))
{
if (pMsg->wParam == VK_TAB)
{
CWnd* pNextControl = GetNextDlgTabItem(GetFocus(), (GetKeyState( VK_SHIFT ) & 0x8000));
if (pNextControl)
GotoDlgCtrl(pNextControl);//pNextControl->SetFocus();
}
}
return CPropertyPage::PreTranslateMessage(pMsg);
}

Praveen
GeneralDialogBox problem Pin
Jump_Around27-May-03 0:02
Jump_Around27-May-03 0:02 
GeneralRe: DialogBox problem Pin
Daniel Strigl27-May-03 0:18
Daniel Strigl27-May-03 0:18 
GeneralRe: DialogBox problem Pin
Neville Franks27-May-03 0:32
Neville Franks27-May-03 0:32 
GeneralDisable close button in AfxMessageBox Pin
rohit.dhamija26-May-03 23:27
rohit.dhamija26-May-03 23:27 
GeneralRe: Disable close button in AfxMessageBox Pin
dabs26-May-03 23:48
dabs26-May-03 23:48 
GeneralRe: Disable close button in AfxMessageBox Pin
rohit.dhamija27-May-03 0:13
rohit.dhamija27-May-03 0:13 
GeneralRe: Disable close button in AfxMessageBox Pin
Anonymous27-May-03 0:29
Anonymous27-May-03 0:29 
GeneralRe: Disable close button in AfxMessageBox Pin
Maximilien27-May-03 0:45
Maximilien27-May-03 0:45 
GeneralRe: Disable close button in AfxMessageBox Pin
rohit.dhamija27-May-03 1:03
rohit.dhamija27-May-03 1:03 
GeneralRe: Disable close button in AfxMessageBox Pin
Rage27-May-03 1:16
professionalRage27-May-03 1:16 
GeneralRe: Disable close button in AfxMessageBox Pin
Rage27-May-03 1:12
professionalRage27-May-03 1:12 
GeneralRe: Disable close button in AfxMessageBox Pin
Anonymous27-May-03 2:00
Anonymous27-May-03 2:00 
GeneralRe: Disable close button in AfxMessageBox Pin
Rage27-May-03 2:15
professionalRage27-May-03 2:15 
Questionhow to resolve this compilation error? Pin
safee ullah26-May-03 23:16
safee ullah26-May-03 23:16 
AnswerRe: how to resolve this compilation error? Pin
Rage26-May-03 23:26
professionalRage26-May-03 23:26 
QuestionHow do you programmatically maintain internet connection? Pin
Abin26-May-03 23:10
Abin26-May-03 23:10 
AnswerRe: How do you programmatically maintain internet connection? Pin
Anonymous26-May-03 23:27
Anonymous26-May-03 23:27 

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.