Click here to Skip to main content
15,918,330 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: hide process Error! Pin
szcococut19-Dec-05 21:24
szcococut19-Dec-05 21:24 
QuestionMesssage queue size in window Pin
Akshay_Shingrup18-Dec-05 20:48
Akshay_Shingrup18-Dec-05 20:48 
QuestionAbout call a DLL built by MATLAB Com builder in VC++ Pin
QuangDien18-Dec-05 20:30
QuangDien18-Dec-05 20:30 
QuestionHow to remove Ok Cancel Apply buttons from property sheet Pin
Owner drawn18-Dec-05 18:11
Owner drawn18-Dec-05 18:11 
AnswerRe: How to remove Ok Cancel Apply buttons from property sheet Pin
Rajesh R Subramanian18-Dec-05 20:11
professionalRajesh R Subramanian18-Dec-05 20:11 
GeneralRe: How to remove Ok Cancel Apply buttons from property sheet Pin
Owner drawn18-Dec-05 20:17
Owner drawn18-Dec-05 20:17 
QuestionHow to set Status message from doc or view class? Pin
BlrBoy18-Dec-05 17:33
BlrBoy18-Dec-05 17:33 
AnswerRe: How to set Status message from doc or view class? Pin
Arman S.19-Dec-05 1:08
Arman S.19-Dec-05 1:08 
Hi,

A simple way. Make m_wndStatusBar public in CMainFrame class.
Include "MainFrm.h" in YourView.cpp and/or YourDoc.cpp.
Type the following to change the text of the pane at 0 index:

<br />
CMainFrame *pFrame = (CMainFrame *) AfxGetMainWnd();<br />
pFrame->m_wndStatusBar.SetPaneText(0, "New Text");


If you want more flexibility, you need to change/or manipulate also with
a static array 'indicators' in MainFrm.h file, which sets the panes in the status bar.


--
======
Arman
Questionvideo streaming &quot;download and play&quot; Pin
ACMTino18-Dec-05 12:22
ACMTino18-Dec-05 12:22 
AnswerRe: video streaming &amp;quot;download and play&amp;quot; Pin
vikas amin18-Dec-05 19:33
vikas amin18-Dec-05 19:33 
GeneralRe: video streaming &amp;amp;quot;download and play&amp;amp;quot; Pin
ACMTino19-Dec-05 2:11
ACMTino19-Dec-05 2:11 
QuestionCreating a window based on Dialog Template Pin
André RB18-Dec-05 12:18
André RB18-Dec-05 12:18 
AnswerRe: Creating a window based on Dialog Template Pin
PJ Arends18-Dec-05 12:33
professionalPJ Arends18-Dec-05 12:33 
QuestionGet window handle? Pin
Lord Kixdemp18-Dec-05 12:01
Lord Kixdemp18-Dec-05 12:01 
AnswerRe: Get window handle? Pin
PJ Arends18-Dec-05 12:23
professionalPJ Arends18-Dec-05 12:23 
GeneralRe: Get window handle? Pin
Lord Kixdemp18-Dec-05 13:47
Lord Kixdemp18-Dec-05 13:47 
GeneralRe: Get window handle? Pin
Lord Kixdemp18-Dec-05 16:36
Lord Kixdemp18-Dec-05 16:36 
QuestionHow to detect screen saver Pin
PJ Arends18-Dec-05 12:00
professionalPJ Arends18-Dec-05 12:00 
AnswerRe: How to detect screen saver Pin
Owner drawn18-Dec-05 18:21
Owner drawn18-Dec-05 18:21 
GeneralRe: How to detect screen saver Pin
PJ Arends18-Dec-05 20:42
professionalPJ Arends18-Dec-05 20:42 
QuestionMemory assertion with std::vector .. Pin
selecta18-Dec-05 8:49
selecta18-Dec-05 8:49 
AnswerRe: Memory assertion with std::vector .. Pin
Jörgen Sigvardsson18-Dec-05 8:56
Jörgen Sigvardsson18-Dec-05 8:56 
GeneralRe: Memory assertion with std::vector .. Pin
selecta18-Dec-05 10:25
selecta18-Dec-05 10:25 
GeneralRe: Memory assertion with std::vector .. Pin
Jörgen Sigvardsson18-Dec-05 10:29
Jörgen Sigvardsson18-Dec-05 10:29 
GeneralRe: Memory assertion with std::vector .. Pin
selecta18-Dec-05 11:03
selecta18-Dec-05 11:03 

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.