Click here to Skip to main content
15,886,055 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: LoadFrame() & CChildFrame Pin
Anonymous30-Jan-05 1:30
Anonymous30-Jan-05 1:30 
Generaluse crystal report Pin
javad_200529-Jan-05 3:37
javad_200529-Jan-05 3:37 
GeneralRe: use crystal report Pin
Mircea Puiu30-Jan-05 0:56
Mircea Puiu30-Jan-05 0:56 
Generalifstream::open() Pin
cpp_Fritz29-Jan-05 1:08
susscpp_Fritz29-Jan-05 1:08 
GeneralRe: ifstream::open() Pin
toxcct29-Jan-05 1:50
toxcct29-Jan-05 1:50 
GeneralRe: ifstream::open() Pin
cpp_fritz29-Jan-05 2:13
susscpp_fritz29-Jan-05 2:13 
GeneralRe: ifstream::open() Pin
toxcct29-Jan-05 2:18
toxcct29-Jan-05 2:18 
GeneralRe: ifstream::open() Pin
cpp_fritz29-Jan-05 3:17
susscpp_fritz29-Jan-05 3:17 
It crashes during the running process, its not during the compiling process. The Application end with the Errorcode:

Nicht abgefangene Ausnahme in back.exe: 0xC0000005: Access Violation.


and display's me a part from the istream.cpp:

istream& istream::operator>>(char * s)
{
int c;
unsigned int i, lim;
if (ipfx(0))
{
lim = (unsigned)(x_width-1);
x_width = 0;
if (!s)
{
state |= ios::failbit;
}
else
{
for (i=0; i< lim; i++)
{
c=bp->sgetc();
if (c==EOF)
{
state |= ios::eofbit;
if (!i)
state |= ios::failbit|ios::badbit;
break;
}
else if (isspace(c))
{
break;
}
else
{
Stopps here-> s[i] = (char)c; <---Application Stopps here
bp->stossc(); // advance pointer
}
}
if (!i)
state |= ios::failbit;
else
s[i] = '\0';
}
isfx();
}
return *this;
}
GeneralRe: ifstream::open() Pin
PJ Arends29-Jan-05 9:22
professionalPJ Arends29-Jan-05 9:22 
GeneralStatic member function Pin
phijophlip29-Jan-05 0:59
phijophlip29-Jan-05 0:59 
GeneralRe: Static member function Pin
includeh1029-Jan-05 1:15
includeh1029-Jan-05 1:15 
GeneralRe: Static member function Pin
Anders Dalvander29-Jan-05 1:16
Anders Dalvander29-Jan-05 1:16 
GeneralRe: Static member function Pin
toxcct29-Jan-05 2:01
toxcct29-Jan-05 2:01 
QuestionHow to add ... Pin
ThatsAlok29-Jan-05 0:43
ThatsAlok29-Jan-05 0:43 
AnswerRe: How to add ... Pin
PJ Arends29-Jan-05 9:33
professionalPJ Arends29-Jan-05 9:33 
GeneralRe: How to add ... Pin
ThatsAlok29-Jan-05 1:25
ThatsAlok29-Jan-05 1:25 
GeneralRe: How to add ... Pin
ThatsAlok30-Jan-05 18:48
ThatsAlok30-Jan-05 18:48 
GeneralAdding Second Recordset in a MFC Pin
ahjiefreak28-Jan-05 23:52
ahjiefreak28-Jan-05 23:52 
GeneralRe: Adding Second Recordset in a MFC Pin
includeh1029-Jan-05 1:05
includeh1029-Jan-05 1:05 
Generaladd menus to context help menu of windows explorer Pin
includeh1028-Jan-05 21:03
includeh1028-Jan-05 21:03 
GeneralRe: add menus to context help menu of windows explorer Pin
geo_m29-Jan-05 6:12
geo_m29-Jan-05 6:12 
GeneralRe: add menus to context help menu of windows explorer Pin
Michael Dunn29-Jan-05 6:37
sitebuilderMichael Dunn29-Jan-05 6:37 
GeneralRe: add menus to context help menu of windows explorer Pin
includeh1029-Jan-05 20:09
includeh1029-Jan-05 20:09 
GeneralHTTP &amp; Unicode Pin
Sitaram Sukumar28-Jan-05 19:48
Sitaram Sukumar28-Jan-05 19:48 
GeneralRe: HTTP &amp; Unicode Pin
ThatsAlok29-Jan-05 0:07
ThatsAlok29-Jan-05 0:07 

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.