-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To Do App in sVB #98
Comments
Nice work @psychclerk.
There is no CurrItem in the code you sent, so I guess in your first attempt you used the OnSelection event to update it. There is no bug here, because removing the selected item in the list deselects all items, so the CurrItem becomes 0.
Is this what you are talking about?
I suggest to consider these ideas in v2:
* Each item should register the date and time when it added to the llist.
* Each item should have a dead time. Use the DatePicker control to allow the user to select the date,
* Use a combox to allow the use to choose the importance of the each task (normal, important, very important, urgent).
* The simplest way to keep the data of each item together, is to add them to the list as a comma separated text, then using the Text.Split() method to restore them into an array when you need that.
There is another alternative, by using a two dimensional array to hold items and their data, but this will need some work toe leep the list and the array synchronized after adding, removing and moving items up and down. So, the first way is easier.
I hope you enjoy creating v2.
…________________________________
From: psychclerk ***@***.***>
Sent: Tuesday, December 31, 2024 5:29 PM
To: VBAndCs/sVB-Small-Visual-Basic ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [VBAndCs/sVB-Small-Visual-Basic] To Do App in sVB (Issue #98)
Code for a To Do App Created using sVB
toDo.zip<https://github.com/user-attachments/files/18282874/toDo.zip>
However, I think I found a bug. If the index of the current item is stored in a variable called CurrItem, running List.RemoveItemAt .. makes the CurrItem = 0. I have worked around that bug to make a functional app in the above code.
—
Reply to this email directly, view it on GitHub<#98>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ALQ5MVXUXPJRD2AX55Z57XD2ILH57AVCNFSM6AAAAABUNXJNGSVHI2DSMVQWIX3LMV43ASLTON2WKOZSG43DINJWGM2DSOI>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code for a To Do App Created using sVB
toDo.zip
However, I think I found a bug. If the index of the current item is stored in a variable called CurrItem, running List.RemoveItemAt .. makes the CurrItem = 0. I have worked around that bug to make a functional app in the above code.
The text was updated successfully, but these errors were encountered: