CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    May 1999
    Location
    WA
    Posts
    65

    Windows 95/98 .INI files

    Is there a limit to how large an .INI file can be on Windows 95/98? I know there is a registry size limit. I am encountering a problem writing large amounts of data to an INI file, and it works perfectly on the Windows NT 4.0 platform.

    Can someone enlighten me as to what the problem may be? Thanks!


    - Troy

  2. #2
    Guest

    Re: Windows 95/98 .INI files

    Yes there is a difference. Under 9x the file can not exceed 32k and each section cannot exceed 2k.


  3. #3
    Guest

    Re: Windows 95/98 .INI files

    I would suggest that, since you encountering a "too much data" problem with ini files, you should consider another approach to storing your data. The intent of ini files (and the registry) is the storage of a small amount of configuration data.


  4. #4
    Join Date
    May 1999
    Location
    WA
    Posts
    65

    Re: Windows 95/98 .INI files

    Thanks for the info on Windows 9x. Do you happen to know the size limit for an .INI file in Windows NT? Thanks for the help!

    - Troy

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured