BCB Read and write INI

Source: Internet
Author: User

A very simple question. I've been looking for a long time to find a tinifile component. The original contains a header file can be used ... It might be too easy. The internet has been looking for a long time to know. The following is an example of help.

#include <inifiles.hpp>__fastcall Tform1::tform1 (tcomponent *owner): Tform (Owner)

{
Tinifile *ini;
INI = new Tinifile (Application->exename, Changefileext). INI "));
top = Ini->readinteger ("Form", "top", 100);
left = Ini->readinteger ("Form", "left", 100);
Caption = ini->readstring ("Form", "Caption",
"Default Caption");
Ini->readbool ("Form", "Initmax", false)?
WindowState = wsmaximized:
WindowState = Wsnormal;
Delete ini;
}
void __fastcall Tform1::formclose (tobject *sender, tcloseaction &action)

{
Tinifile *ini;
INI = new Tinifile (Application->exename, Changefileext). INI "));
Ini->writeinteger ("Form", "Top", top);
Ini->writeinteger ("Form", "left", left);
Ini->writestring ("Form", "Caption", Caption);
Ini->writebool ("Form", "Initmax",
WindowState = = wsmaximized);
Delete ini;
}


INI file content is
[Form]

top=185
left=280
Caption=default Caption
Initmax=0

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.