Hi,
I have the same issue, which seems to be version and platform independent.
The amount of files I can open is limited to 775. If there is one more file, 4coder will crash.
Here a batch file for reproducing it.
| @echo off
FOR /L %%G IN (1,1,776) DO (
echo %%G > file%%G.cpp
)
|