To-Do List is a simple application I made to keep a list of all your important events, Birthdays, Appointments and many other things.
Hope you like it comments and suggestions welcome.
![]()
To-Do List is a simple application I made to keep a list of all your important events, Birthdays, Appointments and many other things.
Hope you like it comments and suggestions welcome.
![]()
Real Nice.
I had to add a line to get it to work though. for some reason it was reversing the forward slashes in the file name to backward slashes and giving me an error when trying to save the task.
vb Code:
sFile = Now.ToString().Replace(":", "-") sFile = sFile.Replace("/", "-") '<-----Added this line
Pat
It looks like a very good start for a simple program.
You might want to consider putting these into a database & rather than having the database in the same folder as the application, you could have it copy it into the user's AppData folder, so there would be a different database for each user on the PC & the one the app uses is whoever is logged in.
You could also have it show only the "unfinished" tasks in the database & when a task becomes "finished" you can store the date/time it was marked as completed so when the user views a "history" you'll be storing all of that info. You could even add a search ability too.
Currently using: VS 2010 Ultimate on Win7 Ultimate x64.
CodeBank: All Threads Colors ComboBox Fading & Gradient Form MoveItemListBox/MoveItemListView MultilineListBox MenuButton ToolStripCheckBox Start with Windows
I also had to change "checked" to "null" in order to get the alerts to run.
vb Code:
If TaskInfo.TChecked.Equals("null") AndAlso (Now.Date = TaskInfo.TDate) Then
Pat
Thanks for the comments, also thanks to PatnLongBeach for the bug fixes, should have an update out agian this week maybe some time. about the DB idea yes this seems good I just not got my head around the new db stuff in .NET, in VB6 I found it easy cos I used to use DAO. I may see if I can find some easy examples for ado and update the app to that.
Dear BenJones
I need to use your code, can I?
I will import it to my project. And I will put your name like; by: Ben Jones