Click here to Skip to main content
16,005,099 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Reading a value from another Project. Pin
T.RATHA KRISHNAN12-Aug-08 20:21
T.RATHA KRISHNAN12-Aug-08 20:21 
AnswerRe: Reading a value from another Project. Pin
Cedric Moonen12-Aug-08 21:28
Cedric Moonen12-Aug-08 21:28 
AnswerRe: Reading a value from another Project. Pin
Jijo.Raj12-Aug-08 20:33
Jijo.Raj12-Aug-08 20:33 
QuestionRe: Reading a value from another Project. [modified] Pin
T.RATHA KRISHNAN12-Aug-08 20:48
T.RATHA KRISHNAN12-Aug-08 20:48 
AnswerRe: Reading a value from another Project. Pin
Jijo.Raj12-Aug-08 21:42
Jijo.Raj12-Aug-08 21:42 
AnswerRe: Reading a value from another Project. Pin
KarstenK12-Aug-08 21:37
mveKarstenK12-Aug-08 21:37 
QuestionOpening help file on pressing f1 Pin
VCProgrammer12-Aug-08 19:27
VCProgrammer12-Aug-08 19:27 
AnswerRe: Opening help file on pressing f1 Pin
Jijo.Raj12-Aug-08 19:56
Jijo.Raj12-Aug-08 19:56 
Basically you've to handle the WM_HELP message. When you press F1 the WM_HELP message will be posted to your window.

Since you are using mfc, handling it in MFC way will be more easier. Add ON_WM_HELPINFO() to message map and add implement OnHelpInfo() in your dialog. For instance,

// Add ON_WM_HELPINFO() to your message map.
BEGIN_MESSAGE_MAP(CYourDialog, CDialog)
   ...
   ON_WM_HELPINFO()
END_MESSAGE_MAP()


// Add this function to your dialog.
BOOL CYourDialog::OnHelpInfo( HELPINFO* HelpInfo)
{
   return TRUE;
}


Regards,
Jijo.

_____________________________________________________

http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

QuestionIs there any size limit to data that can be copied to Clipboard Pin
DivyaSV12-Aug-08 19:17
DivyaSV12-Aug-08 19:17 
Question.exe file size increased Pin
kDevloper12-Aug-08 19:17
kDevloper12-Aug-08 19:17 
AnswerRe: .exe file size increased Pin
Jijo.Raj12-Aug-08 19:36
Jijo.Raj12-Aug-08 19:36 
GeneralRe: .exe file size increased Pin
kDevloper12-Aug-08 19:37
kDevloper12-Aug-08 19:37 
GeneralRe: .exe file size increased Pin
Jijo.Raj12-Aug-08 19:45
Jijo.Raj12-Aug-08 19:45 
GeneralRe: .exe file size increased Pin
kDevloper12-Aug-08 19:58
kDevloper12-Aug-08 19:58 
GeneralRe: .exe file size increased Pin
Jijo.Raj12-Aug-08 20:01
Jijo.Raj12-Aug-08 20:01 
GeneralRe: .exe file size increased Pin
Jijo.Raj12-Aug-08 20:00
Jijo.Raj12-Aug-08 20:00 
GeneralRe: .exe file size increased Pin
kDevloper12-Aug-08 20:23
kDevloper12-Aug-08 20:23 
QuestionQuick question about structure declarations and WinProc messages Pin
Aaron.Morrison12-Aug-08 17:47
Aaron.Morrison12-Aug-08 17:47 
AnswerRe: Quick question about structure declarations and WinProc messages Pin
Jijo.Raj12-Aug-08 18:52
Jijo.Raj12-Aug-08 18:52 
GeneralRe: Quick question about structure declarations and WinProc messages Pin
Aaron.Morrison12-Aug-08 18:55
Aaron.Morrison12-Aug-08 18:55 
QuestionCan we use VS2008 to develop a VisualC++ application that runs without dot net frame work? Pin
CelestialCoder12-Aug-08 17:31
CelestialCoder12-Aug-08 17:31 
AnswerRe: Can we use VS2008 to develop a VisualC++ application that runs without dot net frame work? Pin
Randor 12-Aug-08 17:52
professional Randor 12-Aug-08 17:52 
GeneralRe: Can we use VS2008 to develop a VisualC++ application that runs without dot net frame work? Pin
CelestialCoder12-Aug-08 19:45
CelestialCoder12-Aug-08 19:45 
AnswerRe: Can we use VS2008 to develop a VisualC++ application that runs without dot net frame work? Pin
Rajesh R Subramanian12-Aug-08 19:52
professionalRajesh R Subramanian12-Aug-08 19:52 
GeneralRe: Can we use VS2008 to develop a VisualC++ application that runs without dot net frame work? Pin
CelestialCoder12-Aug-08 22:14
CelestialCoder12-Aug-08 22:14 

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.