ReadSections
-
TIniFile ::ReadSectionValuesC++ Builder/함수 2019. 1. 25. 15:12
TIniFile * test = new TIniFile("C:\\My\\test.ini"); //ini파일 TStringList * SecList = new TStringList; //색션 리스트 TStringList * ValueList = new TStringList; //값 리스트 test->ReadSections(SecList); //test색션리스트 읽어오기 for(i = 0;i Count; i++){ test->ReadSectionValues(SecList->Strings[i], ValueList); } ex) 섹션에서 키값만 따로 리스트로 읽어오기 void __fastcall TMainF::fnLoadData(){TStringList *pList = new TStringL..