top of page

Apps

These are applications I have created using C#.

2023

Todo App

The todo app was built using C# WinForms, utilizing a SQL database and the user interface designed with Guna UI.

Authenticating Error Handling

When logging in, It will read through SQL table to find an existing username & password
When signing up, it will read through SQL table to check if the username or email the user entered already exists
It will check if the username & email are available then proceed to store and save the data into the table

Adding & Editing & Removing Todo's

Adding a todo will proceed to create a unique ID and store the ID, name, description and if it has been completed into the SQL table.
Checking / Completing the todo will update the table automatically.
When selecting the todo, it will open a panel where you can edit the name and description. Clicking on the update button will automatically update the table with the new information.
Remove the todo will remove it from the list and the SQL table.

Updating & Deleting User Account

When updating the account, the system will scan the table to check if the new information already exists. If the information is unique, it will proceed to update the table.
Removing the account will delete all user information from the table, along with all current to-dos linked to the account.
bottom of page