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

Search:

Type: Posts; User: Airashby

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    1,106

    Spawned Process Exception Handling

    Is it possible to detect that an exception/hanging has/is occured in a process spawned with the Process::Start command, without changing the spawned aplication code using C++ and .Net 2.0 Framework?...
  2. Replies
    1
    Views
    5,734

    [RESOLVED] File Open event

    I want to write some code that looks for any opening of a .bat file then display a message box giving the user an option.

    Hope this is the right place.
  3. Replies
    2
    Views
    2,474

    Re: std::string to System::String

    Thank you that did the trick.
  4. Replies
    2
    Views
    2,474

    [RESOLVED] std::string to System::String

    How do I do this I think I'm going mad.

    fstream input("Input.dat", ios::in);
    vector<string> list;
    char listc[512];

    while( input.getline(listc, 512) )
    list.push_back( listc );
    ...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured