Yes, I do. WRITEPROFILESTRING is the most efficient way to write to .INI files. OPEN/READLINE/WRITELINE/CLOSE is slow, see the KiXtart Manual.
quote:
The file-I/O functions in KiXtart (Open, ReadLine, and Close) process small configuration files. They are not intended for larger operations, such as scanning long files. For the sake of simplicity and speed, Open reads an entire ASCII file into memory, and subsequent ReadLine commands read lines stored in memory.
READPROFILESTRING/WRITEPROFILESTRING use the internal Windows API to read/write whereas your solution will do it in KiXtart , which is very inefficient compared to a C++ API.

Also, I would say the READPROFILESTRING/WRITEPROFILESTRING will use less packets to accomplish a give task than the
OPEN/READLINE/WRITELINE/CLOSE.
_________________________
There are two types of vessels, submarines and targets.