what is configuration in software? and how to make it?
means how to display configuration in any software?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sunny SharmaPosted Aug 9, 2013, 7:24 AM
You can have settings for your application stored in any file format of your choice like XML, TXT, BIN, DAT, ABC, XYZ, etc. If you want to display the configuration then just bind your controls to data from your settings file.
Suppose I've settings for an application stored in a text file (for demonstration purposes):
------------------------------------
PrefferedPageItemCount=10 // only a single configuration
------------------------------------
from this configuration, every time I check the preference of Itms count on a page and render the items accordingly.
Now if I want somebody to be able to change it, I'll place few controls and bind this PrefferedPageItemCount to any control allowing the user to edit the count.
(suppose I change it to 20)
As soon the page will load next, will check the preference and render the items accordingly.
To-Rephrase my words, configuration files may contain settings for your application. The application itself could be of any domain- Desktop/Web/Mobile etc.
Hope you got the point now.
Dipika ShahPosted Aug 9, 2013, 7:15 AM
can u give solution about that?
Sunny SharmaPosted Aug 9, 2013, 1:08 AM
Simply, configuration may exist for any domain of application. They're just the settings stored inside any file.
Would be great if you be specific and explain what you're trying to make.