Click here to Skip to main content
15,908,909 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Subclassing ActiveX control Pin
Muhammad Azam14-Mar-06 6:29
Muhammad Azam14-Mar-06 6:29 
GeneralRe: Subclassing ActiveX control Pin
Alton Williams14-Mar-06 10:09
Alton Williams14-Mar-06 10:09 
AnswerRe: Subclassing ActiveX control Pin
Nibu babu thomas14-Mar-06 17:16
Nibu babu thomas14-Mar-06 17:16 
QuestionHow to Compare Builds Pin
Steven Mattison14-Mar-06 5:46
Steven Mattison14-Mar-06 5:46 
AnswerRe: How to Compare Builds Pin
David Crow14-Mar-06 6:09
David Crow14-Mar-06 6:09 
GeneralRe: How to Compare Builds Pin
Steven Mattison14-Mar-06 6:14
Steven Mattison14-Mar-06 6:14 
GeneralRe: How to Compare Builds Pin
David Crow14-Mar-06 6:31
David Crow14-Mar-06 6:31 
Questionnew in C++ & Visual C++ 6, please check my code Pin
mrby12314-Mar-06 5:38
mrby12314-Mar-06 5:38 
I wrote a small code to read a file and write it out. I found the program can not read all the lines. I do not know what is wrong ? Please ckeck it for me.

---------------------------------------------------------------------

// blast_vib_procDlg.cpp : implementation file
//

#include <iostream.h>
#include <fstream.h>
#include <string>
using std::string;

int
main()
{
// read seed waveform data file
// string qq;
char filein[35];
char fileout[35];
ifstream f_ptr1;
ofstream f_ptr2;
char buffer_seed[90];
int i=0;
//
string pp;
cout << "input file name ?";
cin >> filein;
cout << "output file name ?";
cin >> fileout;

f_ptr1.open(filein);
if(!f_ptr1) {
cerr << "error: unable to open input file: "<
QuestionRe: new in C++ & Visual C++ 6, please check my code Pin
David Crow14-Mar-06 5:43
David Crow14-Mar-06 5:43 
AnswerRe: new in C++ & Visual C++ 6, please check my code Pin
mrby12314-Mar-06 5:56
mrby12314-Mar-06 5:56 
QuestionRe: new in C++ &amp; Visual C++ 6, please check my code Pin
David Crow14-Mar-06 6:06
David Crow14-Mar-06 6:06 
AnswerRe: new in C++ &amp;amp;amp;amp;amp; Visual C++ 6, please check my code Pin
mrby12314-Mar-06 6:23
mrby12314-Mar-06 6:23 
QuestionNew in c++ Pin
ADY00714-Mar-06 5:27
ADY00714-Mar-06 5:27 
AnswerRe: New in c++ Pin
David Crow14-Mar-06 5:41
David Crow14-Mar-06 5:41 
GeneralRe: New in c++ Pin
mrby12314-Mar-06 5:49
mrby12314-Mar-06 5:49 
GeneralRe: New in c++ Pin
ADY00714-Mar-06 5:52
ADY00714-Mar-06 5:52 
GeneralRe: New in c++ Pin
toxcct14-Mar-06 5:57
toxcct14-Mar-06 5:57 
GeneralRe: New in c++ Pin
mrby12314-Mar-06 6:03
mrby12314-Mar-06 6:03 
QuestionEquivalent of POSIX pthread_cond_t in Windows threading API? Pin
paul_a_chapman14-Mar-06 4:52
paul_a_chapman14-Mar-06 4:52 
AnswerRe: Equivalent of POSIX pthread_cond_t in Windows threading API? Pin
Nemanja Trifunovic14-Mar-06 6:48
Nemanja Trifunovic14-Mar-06 6:48 
GeneralRe: Equivalent of POSIX pthread_cond_t in Windows threading API? Pin
paul_a_chapman14-Mar-06 21:24
paul_a_chapman14-Mar-06 21:24 
Questionwhy does barcode need special font? Pin
includeh1014-Mar-06 4:43
includeh1014-Mar-06 4:43 
AnswerRe: why does barcode need special font? Pin
David Crow14-Mar-06 5:24
David Crow14-Mar-06 5:24 
QuestionOpen a external application due tu the document type Pin
Alfred Willi14-Mar-06 4:42
Alfred Willi14-Mar-06 4:42 
AnswerRe: Open a external application due tu the document type Pin
includeh1014-Mar-06 4:50
includeh1014-Mar-06 4:50 

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.