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

Search:

Type: Posts; User: zerver

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    4,194

    Re: First Chance Exception CString

    Alright, well then use the _T macro anyway just to be sure, and rewrite the code a bit to rule out the possiblilty of corruption...


    CString test = dadir;
    test += _T("\\*.csv");
    thepath = test;
  2. Replies
    5
    Views
    4,194

    Re: First Chance Exception CString

    I'm not very experienced with unicode, but IIRC you have to prefix the string constants with "L".

    thepath = dadir + L"\\*.csv";
    Does it make any difference?
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured