problem with long c++ file
-
I have some problems with a c++ file containing about 7000 lines. Sometimes, Visual Studio copies some of the last lines of the file, and prints them at the bottom of the file... only problem is that it doesn't show them in the editor.. I have to reopen the file to find and delete the 'new' code.. anyone having the same problem?? I am using Visual Studio .NET 2003.. øivind
-
I have some problems with a c++ file containing about 7000 lines. Sometimes, Visual Studio copies some of the last lines of the file, and prints them at the bottom of the file... only problem is that it doesn't show them in the editor.. I have to reopen the file to find and delete the 'new' code.. anyone having the same problem?? I am using Visual Studio .NET 2003.. øivind
I think your problem is, that you have a file containing 7000 lines ;-) You should find a way to split it. I often find duplicate code in such code fragment -> make them functions. If it is a Class.cpp it is probably the class is too big, tries to cover too much. Extract Classes from it. HTH Kind regards Sawatzky PS: No I never had that problem ;P
-
I have some problems with a c++ file containing about 7000 lines. Sometimes, Visual Studio copies some of the last lines of the file, and prints them at the bottom of the file... only problem is that it doesn't show them in the editor.. I have to reopen the file to find and delete the 'new' code.. anyone having the same problem?? I am using Visual Studio .NET 2003.. øivind
I think I've read others complaining about that bug. Try searching the lounge. Todd Smith