Click here to Skip to main content
15,890,609 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: MFC in VS2003 Pin
Stuart Dootson7-Apr-09 1:57
professionalStuart Dootson7-Apr-09 1:57 
GeneralRe: MFC in VS2003 Pin
Rajesh R Subramanian7-Apr-09 2:48
professionalRajesh R Subramanian7-Apr-09 2:48 
QuestionModeles , Modal dialog window and variable Pin
durban27-Apr-09 0:51
durban27-Apr-09 0:51 
AnswerRe: Modeles , Modal dialog window and variable Pin
Cedric Moonen7-Apr-09 1:00
Cedric Moonen7-Apr-09 1:00 
AnswerRe: Modeles , Modal dialog window and variable Pin
CPallini7-Apr-09 1:01
mveCPallini7-Apr-09 1:01 
AnswerRe: Modeles , Modal dialog window and variable Pin
Jonathan Davies7-Apr-09 1:10
Jonathan Davies7-Apr-09 1:10 
Questioniostream compatibility problems Pin
Varghese Paul M7-Apr-09 0:06
Varghese Paul M7-Apr-09 0:06 
AnswerRe: iostream compatibility problems Pin
Stuart Dootson7-Apr-09 1:06
professionalStuart Dootson7-Apr-09 1:06 
Varghese Paul M wrote:
streambuf::allocate()
streambuf::doallocate()
streambuf::blen()
streambuf::base()
streambuf::ebuf()
streambuf::setb()


These all refer to the 'reserve area' of the pre-standard IOStreams streambuf. The standard basic_streambuf doesn't have this concept at all (I guess they decided it was better for that concept not to exist in an abstract stream buffer). This post[^], however, gives a suggestion for a possible solution.

Varghese Paul M wrote:
ostream::osfx()
ostream::opfx()


These were functions that ran before (opfx) and after (osfx) every output operation. They've been replaced by the sentry nested class, so rather than this:

if (os.opfx()) { os.do_something(); }
os.osfx();


you have this

std::ostream::sentry se(os);
if (se) { os.do_something(); }


Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

QuestionHow can check ActiveSync or Mobile device centre installed on PC? Pin
Le@rner6-Apr-09 23:57
Le@rner6-Apr-09 23:57 
Questionplease guide I program for fax modem, thanks Pin
aa_zz6-Apr-09 23:34
aa_zz6-Apr-09 23:34 
AnswerRe: please guide I program for fax modem, thanks Pin
Rajesh R Subramanian7-Apr-09 0:02
professionalRajesh R Subramanian7-Apr-09 0:02 
GeneralRe: please guide I program for fax modem, thanks Pin
CPallini7-Apr-09 0:14
mveCPallini7-Apr-09 0:14 
GeneralRe: please guide I program for fax modem, thanks Pin
aa_zz7-Apr-09 0:15
aa_zz7-Apr-09 0:15 
JokeRe: please guide I program for fax modem, thanks Pin
CPallini7-Apr-09 0:38
mveCPallini7-Apr-09 0:38 
GeneralRe: please guide I program for fax modem, thanks Pin
Rajesh R Subramanian7-Apr-09 0:52
professionalRajesh R Subramanian7-Apr-09 0:52 
AnswerRe: please guide I program for fax modem, thanks Pin
David Crow7-Apr-09 3:08
David Crow7-Apr-09 3:08 
Questionprevious posts and replies.... Pin
p_19606-Apr-09 23:17
p_19606-Apr-09 23:17 
AnswerRe: previous posts and replies.... Pin
Niklas L6-Apr-09 23:24
Niklas L6-Apr-09 23:24 
AnswerRe: previous posts and replies.... Pin
CPallini6-Apr-09 23:26
mveCPallini6-Apr-09 23:26 
QuestionHow to display a diagram charted by visio, such as topological diagram, iwith mfc? Pin
liuxg20086-Apr-09 22:27
liuxg20086-Apr-09 22:27 
QuestionSynchronization problem. (Hiding pointers addresses behind access keys) Pin
Ahmed Charfeddine6-Apr-09 21:54
Ahmed Charfeddine6-Apr-09 21:54 
AnswerRe: Synchrnoization problem. Pin
Sarath C6-Apr-09 22:04
Sarath C6-Apr-09 22:04 
GeneralRe: Synchrnoization problem. Pin
Ahmed Charfeddine6-Apr-09 22:22
Ahmed Charfeddine6-Apr-09 22:22 
QuestionMainFrame Maximization problem Pin
prithaa6-Apr-09 20:50
prithaa6-Apr-09 20:50 
AnswerRe: MainFrame Maximization problem Pin
«_Superman_»6-Apr-09 21:04
professional«_Superman_»6-Apr-09 21:04 

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.