Custom Query (527 matches)
Results (34 - 36 of 527)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#465 | duplicate | Add option to unlock file if correct unlock is in the path to locked file error message | ||
Description |
Delete of "C:\OS2\DLL\DOSCALL1.DLL" failed Module: worker.c Line number: 1749 OS/2 error: 32 Class: Resource or data locked Action: Delay and retry Location: Random access device such as a disk "SYS0032: The process cannot access the file because it is being used by another process." The default shouldn't unlock and delete the file |
|||
#518 | duplicate | Double-clicking on invalid ZIP file results in incorrect error message | ||
Description |
Double-clicking on an invalid ZIP file causes an error message regarding "The program UNZIP32.EXE is not found on the PATH or is not an executable file type." After closing that error message, FM/2 displays the window describing the problem with the zip file. While ARCHIVER.BB2 does have an entry for UNZIP32.EXE, it is far below the one for Zip/Unzip (ZIP.EXE and UNZIP.exe). I think FM/2 should, by default, use the first archiver it finds that has the right extension and right signature for the file being opened. This problem may be related to Ticket #517. |
|||
#1 | wontfix | Use Innotek FT2LIB in FM2 | ||
Description |
Globally activate the font engine on font engine enabled systems. http://www.edm2.com/index.php/Ft2lib What I recommend is to use DosLoadModule and DosQueryProcAddr to conditionally load and enable the library. This also needs a settings page entry before it can go into production along with code to disable the library when the setting is toggled off. The enable/disable code should to be wrapped in utility function rather than being done in-line. The enable code needs to go into InitFM3DLL() in init.c and should be similar to
EnableFT2Lib() will look something like
The disable function, DisableFt2Lib(), will look something like
For an example of how to use DosLoadModule etc., see the code near line 1819 of misc.c. |