|
| KiXtart Command Reference |
READPROFILESTRINGactionRetrieves a string from an initialization file. syntaxREADPROFILESTRING ("file name", "section", "key") parametersFile name A string that names the initialization file. If this parameter does not include a full path, Windows searches for the file in the Windows directory. Section A string that specifies the section containing the key name. If this parameter is empty, READPROFILESTRING returns all section names in the file. Key A string containing the key name whose associated string is to be retrieved. If this parameter is empty, all key names in the section specified by section are returned. remarksThis function is provided for compatibility with 16-bit Windows based applications. Win32 based applications store initialization information in the registry. returns
example$dev = ReadProfileString(win.ini, "Windows", "Device") If @ERROR = 0 ? "Windows device = " + $dev Endif |