CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: shadolink

Search: Search took 0.03 seconds.

  1. token going null on second itteration of loop

    while(!pile.eof()){
    pile.getline(inputbuff,199,'\n');
    count++;
    if(count % 2 != 0){
    tok = strtok(inputbuff,",");
    tok = strtok (NULL,",");
    ...
  2. Replies
    5
    Views
    5,245

    Re: crashing on fstream open file

    I've been debugging it
    the problem is with fstream function call which is regular c++
    I free fil later and did not post that part of the function
    and fil has the right path at time of .open() call...
  3. Replies
    5
    Views
    5,245

    Re: crashing on fstream open file

    C:\Users\V\Desktop\poo.m3u
    which works when I type in windows explorer bar.
    I thought that maybe you had to put the double slashes but thats only for string literals.
  4. Replies
    5
    Views
    5,245

    crashing on fstream open file

    other posts talk about the fopen function and don't really give any solutions to this
    the var that has the file path is a char* and has been converted from a system::string^
    it is completely valid...
  5. Replies
    0
    Views
    861

    crashing on fstream open file

    I get expression: stream != NULL debug assertion failed. everyone says this is because its not opening the file correctly but I will post my code and tell you what the filename var is at when I'm...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured