Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi!


I Have MFC application, when i save the file, file will be Saved(created). If i double
click on saved file then my application will be open. (lly like Hyper Terminal)

When i double click on saved file, it is giving "The file is too large to open" giving this error.

Note:
When i built the application on Win7, VS2008 issue is coming, the above issue is not coming.
when i built the application on Win XP, vc6.0

Initially the saved file is UNICODE Encoded, so getting this error on Win7. But now the text file is
ANSI encoded still it is getting the same error "The file is too large" on WonXP.
Posted

1 solution

You cannot do much about it. Different system may have different amount of available memory, not only due to different versions, but different setup and, already loaded processes, and available physical RAM. With 32-bit Windows, only 2G are available to application processes, and with x86-64 or Itanium and 64-bit applications, the bottleneck could be available physical RAM. Use files of less size or permanently work with the file on disk not reading it all at once. Usually, such change in code design is possible.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900