I have been using the Personal Edition of FTN95 and have found it to work perfectly on a number of programs, each with 3000+ lines of code. However, even on a minimum number of lines of code, the CPU is heavily loaded, even when no program functions are in progress (i.e., waiting for keyboard input). The CPU is an Intel Core-2 6600 at 2.4 GHz with 2 Gigabytes of RAM. The programs respond the same way on my laptop computer, but it cannot support the load indefinitely without overheating the CPU. One is running MS-Vista and the other one is running MS-XP.
The overload only occurs when a window is open. The following code is used to open the window. WINAPP INCLUDE <WINDOWS.INS>
NEWFONT=CREATEFONT(LFHEIGHT,LFWIDTH,LFESCAPEMENT,
+ LFORIENTATION,LFWEIGHT,LFITALIC,LFUNDERLINE,
+ LFSTRIKEOUT,LFCHARSET,LFOUTPRECISION,
+ LFCLIPPRECISION,LFQUALITY,LFPITCHANDFAMILY,LFFACENAME)
C/////DEFAULT FONT SET AND WINDOW SIZE SET CALL SET_DEFAULT_FONT@(NEWFONT) XSIZE=CLEARWIN_INFO@('SCREEN_WIDTH') YSIZE=CLEARWIN_INFO@('SCREEN_DEPTH') XPOS=0 YPOS=0 NWIN=CREATE_WINDOW@( + 'XXXXXOOOOOXXXXXOOOOOXXX', + XPOS,YPOS,XSIZE,YSIZE) CALL SET_DEFAULT_WINDOW@(NWIN)