VC++ code to read and write to an INI file
-
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
-
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
IVe to do it using MFC
-
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
Look at GetProfileString()[^] and GetPrivateProfileString()[^]
It is a crappy thing, but it's life -^ Carlo Pallini
-
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
[here^]
-
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
Also here [^]. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Can Somebody Please tell me how to Read and Write INI file .... If possible send me some samples too
-
I went through all the codes and sites.... BUt its all WIN32 CONSOLE application... what i want is MFC Application... The other programs i got is MFC Application.........but... It just reads an INI file...thats already created... Im using Visual Studio 2003..... Visual Studio 2008 supports CIniFile.... but the lower versions dont.... so is there any direct....or easy way to READ/WRITE INI file... Other than using the CIniFile code availabe in this forum????
-
Also here [^]. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Is it easier to create INI file in REGISTRY then READ/WRITE TO it?
-
Also here [^]. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]i need to find the BEST and EASIEST method to CREATE/READ/WRITE INI file
-
Is it easier to create INI file in REGISTRY then READ/WRITE TO it?
For your kind of application, the registry shouldn't be used. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
i need to find the BEST and EASIEST method to CREATE/READ/WRITE INI file
Reading and writing to a
INI
file it is very simple. You can easily make a 'test'INI
file, using, for instance thenotepad
, and then write to (or read from) programmatically. Check out one of the articles I linked in one of my previous replies to see (in the source files) some sample code. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
For your kind of application, the registry shouldn't be used. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Why cant i use registry???? can u tell me please.... im quite IGNORANT abt all these
-
Why cant i use registry???? can u tell me please.... im quite IGNORANT abt all these
Well, you actually can, but you definitely shouldn't. The registry should be used for maintainig application settings (i.e. few data), not as application general data storage (i.e. big amount of data). :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Reading and writing to a
INI
file it is very simple. You can easily make a 'test'INI
file, using, for instance thenotepad
, and then write to (or read from) programmatically. Check out one of the articles I linked in one of my previous replies to see (in the source files) some sample code. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Yes i did check all those links.... thanks..it was helpful... but it all tells abt WIN32 CONSOLE Application... whereas i need.... MFC Application
-
I went through all the codes and sites.... BUt its all WIN32 CONSOLE application... what i want is MFC Application... The other programs i got is MFC Application.........but... It just reads an INI file...thats already created... Im using Visual Studio 2003..... Visual Studio 2008 supports CIniFile.... but the lower versions dont.... so is there any direct....or easy way to READ/WRITE INI file... Other than using the CIniFile code availabe in this forum????
You must redirect the CWinApp application data storage from the registry to your ini file. See the MSDN documentation on CWinApp::m_pszRegistryKey and CWinApp::m_pszProfileName. By freeing m_pszRegistryKey and setting m_pszProfileName to an appropiate path you will be able to use CWinApp::GetProfileString CWinApp::GetProfileInt CWinApp::WriteProfileInt CWinApp::WriteProfileString on an ini file instead of the registry. When I switched my application to use an .ini file, this took me a while to find out. However, it's not likely we are the first people to face this issue ... there must be an example somewhere. :~
-
Well, you actually can, but you definitely shouldn't. The registry should be used for maintainig application settings (i.e. few data), not as application general data storage (i.e. big amount of data). :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Ok ..thank u
-
Yes i did check all those links.... thanks..it was helpful... but it all tells abt WIN32 CONSOLE Application... whereas i need.... MFC Application
For the purpose of read/write to a INI file, the fact it is negligible. BTW are you able to code a very simple
MFC
application? :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
You must redirect the CWinApp application data storage from the registry to your ini file. See the MSDN documentation on CWinApp::m_pszRegistryKey and CWinApp::m_pszProfileName. By freeing m_pszRegistryKey and setting m_pszProfileName to an appropiate path you will be able to use CWinApp::GetProfileString CWinApp::GetProfileInt CWinApp::WriteProfileInt CWinApp::WriteProfileString on an ini file instead of the registry. When I switched my application to use an .ini file, this took me a while to find out. However, it's not likely we are the first people to face this issue ... there must be an example somewhere. :~
Yes i read abt it..... thank you.... I got the right answer that i was looking for
-
For the purpose of read/write to a INI file, the fact it is negligible. BTW are you able to code a very simple
MFC
application? :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Yes... i can... Ive done MFC database programming too....
-
Yes... i can... Ive done MFC database programming too....
anna mathew wrote:
Yes... i can...
Wow, like Obama. :rolleyes:
anna mathew wrote:
Ive done MFC database programming too....
Then shouldn't be difficult for you to have a look at the (console) article and adapt the code to the
MFC
application. Good luck. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]