Coding in VB.NET – Part 3

 Over the past few months, my return to classes slowed down my coding progress. However, this weekend, I finally found time to complete the first version of my To Do List project.

This initial release includes some key features:

Tasks can now be marked as "To Do", "Doing" or "Done".

The task list can now be saved as a text file.

Users can load a previously saved list.

To bring this to life, I learned about dictionaries, a data structure that pairs keys with values - that I used to associating tasks with their states. I also had to explore about persistence and file management, using System.IO, which allowed me to implement the save and load functionality.

The user interface remains a straightforward Windows Form, built with textboxes, labels, buttons and a listbox. When saving a list, a standard system dialog pops up to let users choose their files location. I added some basic validation to prevent errors, like handling empty entries, and set a default task state to ensure the task-state pairing works smoothly.

I´ve included a short video demo to show how it works:


I've uploaded the finished project to GitHub, where you can explore the code yourself:

For next steps in this project, I am planning to adapt the task manager to a Materials Engineering context - perhaps tailoring it to track experiments and projects.
As for my VB.NET journey, I'm about to dive into Object-Oriented Programming and experiment with more Windows Forms controls to level up my skills.

Thanks for following along, and stay tuned for more updates!

Comments