INI File is not working
-
hi, i am facing difficulty in getting the value for the given section.. i refered the code which is on the http://www.pocketpcdn.com/articles/ini\_file.html. But it is failing to get the value from the INI file. Any kind of comments are welcome. Regards, AKS
-
hi, i am facing difficulty in getting the value for the given section.. i refered the code which is on the http://www.pocketpcdn.com/articles/ini\_file.html. But it is failing to get the value from the INI file. Any kind of comments are welcome. Regards, AKS
Can you please show a sample of the ini file? There are some characters thet the ini file reader does not understand in the key. Also, the file must be UNICODE text. Regards, João Paulo Figueira Embedded MVP
-
Can you please show a sample of the ini file? There are some characters thet the ini file reader does not understand in the key. Also, the file must be UNICODE text. Regards, João Paulo Figueira Embedded MVP
Hi, Thank you very much. It works fine now after i changed the file as UNICODE. please let me know, what are all those characters that the INI file reader does not understand in the KEY. Looking for your reply. Regards, AKS
-
Hi, Thank you very much. It works fine now after i changed the file as UNICODE. please let me know, what are all those characters that the INI file reader does not understand in the KEY. Looking for your reply. Regards, AKS
The code uses functions to filter acceptable key names (see top of IniFile.cpp). The accepted characters are: 'a' to 'z', 'A' to 'Z', '_' and '.'. You can change this to reflect your own choices. Regards, João Paulo Figueira Embedded MVP
-
Hi, Thank you very much. It works fine now after i changed the file as UNICODE. please let me know, what are all those characters that the INI file reader does not understand in the KEY. Looking for your reply. Regards, AKS
Thank you very much ! Really it will help me a lot !