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

C / C++ / MFC

 
QuestionWhich IDE to use? Pin
Mridang Agarwalla23-Mar-06 0:46
Mridang Agarwalla23-Mar-06 0:46 
AnswerRe: Which IDE to use? Pin
_AnsHUMAN_ 23-Mar-06 0:51
_AnsHUMAN_ 23-Mar-06 0:51 
AnswerRe: Which IDE to use? Pin
toxcct23-Mar-06 2:29
toxcct23-Mar-06 2:29 
Questiongetting started vith VC++ Pin
Mridang Agarwalla23-Mar-06 0:42
Mridang Agarwalla23-Mar-06 0:42 
AnswerRe: getting started vith VC++ Pin
_AnsHUMAN_ 23-Mar-06 0:47
_AnsHUMAN_ 23-Mar-06 0:47 
AnswerRe: getting started vith VC++ Pin
toxcct23-Mar-06 2:13
toxcct23-Mar-06 2:13 
QuestionFinding the detailes of active window Pin
kk_mfc23-Mar-06 0:09
kk_mfc23-Mar-06 0:09 
AnswerRe: Finding the detailes of active window Pin
Monty223-Mar-06 0:50
Monty223-Mar-06 0:50 
There are different ways to do this
you can either use EnumWindows to enumerate all windows and match the class name.
To see if Internet Explorer is running use
HWND hExplorer = ::FindWindow("IEFrame", NULL); 
if (!hExplorer) 
{
	hExplorer = ::FindWindow("CabinetWClass", NULL); 
}


If you want to get the URL then you can see
http://www.codeproject.com/cpp/DDE_with_IE_and_Netscape.asp[^]


C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do, it blows away your whole leg
QuestionMAPI Support in MFC Pin
narayanagvs23-Mar-06 0:08
narayanagvs23-Mar-06 0:08 
QuestionLex & Yacc Pin
Tareif23-Mar-06 0:01
Tareif23-Mar-06 0:01 
AnswerRe: Lex & Yacc Pin
toxcct23-Mar-06 2:07
toxcct23-Mar-06 2:07 
AnswerRe: Lex & Yacc Pin
Ștefan-Mihai MOGA23-Mar-06 2:27
professionalȘtefan-Mihai MOGA23-Mar-06 2:27 
QuestionHBITMAP anitmations in PictureBox Pin
capglll22-Mar-06 23:09
capglll22-Mar-06 23:09 
QuestionGetDiskFreeSpaceEX API Problem Pin
skuu22-Mar-06 22:53
skuu22-Mar-06 22:53 
AnswerRe: GetDiskFreeSpaceEX API Problem Pin
chetan21018322-Mar-06 23:31
chetan21018322-Mar-06 23:31 
AnswerRe: GetDiskFreeSpaceEX API Problem Pin
Monty223-Mar-06 1:03
Monty223-Mar-06 1:03 
QuestionHow do I convert a double to binary Pin
panks_r22-Mar-06 22:36
panks_r22-Mar-06 22:36 
AnswerRe: How do I convert a double to binary Pin
Ștefan-Mihai MOGA22-Mar-06 23:03
professionalȘtefan-Mihai MOGA22-Mar-06 23:03 
GeneralRe: How do I convert a double to binary Pin
panks_r23-Mar-06 0:05
panks_r23-Mar-06 0:05 
QuestionHow can I use CScrollView in a dialog Pin
puresnow22-Mar-06 22:24
puresnow22-Mar-06 22:24 
AnswerRe: How can I use CScrollView in a dialog Pin
Ștefan-Mihai MOGA22-Mar-06 23:05
professionalȘtefan-Mihai MOGA22-Mar-06 23:05 
GeneralRe: How can I use CScrollView in a dialog Pin
puresnow22-Mar-06 23:17
puresnow22-Mar-06 23:17 
QuestionUNC Path Pin
chenxiujie22-Mar-06 22:10
chenxiujie22-Mar-06 22:10 
AnswerRe: UNC Path Pin
toxcct22-Mar-06 22:17
toxcct22-Mar-06 22:17 
Questionproblem with MAPI Pin
QuickDeveloper22-Mar-06 22:06
QuickDeveloper22-Mar-06 22:06 

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.