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

Search:

Type: Posts; User: salshaaban

Search: Search took 0.02 seconds.

  1. Re: Read/Write data from/to Excel Sheet using C++

    Two articles from Microsoft:
    Automating Excel from C++ with MFC or without.
  2. Replies
    2
    Views
    785

    Re: Array of strings into txt file help

    Yes. Just move it into the loop


    for(i=0; i<=2; i++)
    {
    printf("Please enter the the text you want to see in the .txt file: ");
    fflush(stdin);
    gets(string1[i]);
    fputs(string1[i],pfile); ...
  3. Replies
    12
    Views
    1,990

    Re: Bad Pointer? Memory Allocation

    I don't see why you need the temp arrays. You could simply write:



    if( found == 0 )
    {
    delete[] stockNames[c];
    delete[] stockFullName[c];
    delete[] stockPrice[c];
  4. Re: Force stop/kill/eject usb mass storage device

    If you can't find a direct way of doing this you can try the same approach used by unlocker i.e finding which processes have locked the drive and unlocking/killing them.
    Or if you're into reverse...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured