+ 1
Make a win application for reading the settings from a ini file.
Im trying to start with at least what i think is a easy task, i want a Windows application (c# maybe). To read a setup.ini text file from Windows and show some of the settings in the application. After this i would like to edit some settings eg port and server and be able to save the settings entered. Is this something doable as a firt application or is it more complex than i think? Where do you think i should start?
3 Réponses
+ 1
This is perfectly doable.
Start with visual studio community edition.
Start a c# project.
Add button to a form and make a "hello world " application
Learn about reading files
https://www.dotnetperls.com/file-readalltext
https://www.dotnetperls.com/file
http://www.csharp-examples.net/read-text-file/
Is the ini-file your are trying to read from the application it self or a ini-file of something else ?
+ 1
Thank you for the help, the ini-file is not for the application itself but for another application. See this application for something like a specified setup application for a specified ini file.
+ 1
Great. Then you can use the method I have described.
Keep asking, keep coding.