User Profile

Collapse

Profile Sidebar

Collapse
smk
smk
Last Activity: May 16 '07, 05:41 AM
Joined: Sep 15 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • smk
    started a topic Xerces - Windows XP problem
    in C

    Xerces - Windows XP problem

    I am using Xerces to parse XML file. XMLstring::tran scode was working fine on windows 2000 but the same program is giving memory error at XMLstring::tran scode.

    But one more thing is if I run the program in debug mode everything was working fine, I am not able to get why it was running successfully in debug mode?

    Any ideas to solve this problem.

    Thanks
    smk
    See more | Go to post

  • smk
    replied to Reading random data from file
    in C
    Thank you very much
    I got it
    See more | Go to post

    Leave a comment:


  • smk
    started a topic Reading random data from file
    in C

    Reading random data from file

    Hi,

    I am having a file in this format

    *************** *************** *************** *************** **********
    *************** *************** *************** *************** **********
    *** ***
    *** Program Summary File ***
    *** ======= ====== ======= ==== ...
    See more | Go to post

  • smk
    replied to Dump Directory
    in C
    Hi,

    Using FindFirstFile and FindNextFile functions you can browse through the directory tree and can get all the files names. These functions will return WIN32_FIND_DATA structure, which has the information about the file attributes.The below example will be helpfull.

    Code:
    
    #include "windows.h"
    
    int
    main(int argc, char *argv[])
    {
      WIN32_FIND_DATA FindFileData;
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...