Ini file handling
-
Hi, for normal .net framework, we can use the existing ini class that uses kernel32.dll. Is there any similar class for the compact framework? what is the way i can read an ini file on compact framework??? Thanks.
-
Hi, for normal .net framework, we can use the existing ini class that uses kernel32.dll. Is there any similar class for the compact framework? what is the way i can read an ini file on compact framework??? Thanks.
The standard Windows functions for INI files are not in the Windows Mobile SDKs so I doubt there's a way to call them from the Framework. You have to implement your own INI file interface (or maybe there's a class available somewhere!?). Otherwise, I suggest using the registry instead...
-
The standard Windows functions for INI files are not in the Windows Mobile SDKs so I doubt there's a way to call them from the Framework. You have to implement your own INI file interface (or maybe there's a class available somewhere!?). Otherwise, I suggest using the registry instead...
Thanks for the help.