So I'm currently completing my university project in VB.Net and we have to create a program that a fitness club can use to add new members and update member details. I currently have 2 pages for this, one for new members, and one to update, and I have considered merging them into one as they look the same. But I like keeping code seperate. The member details are saved in an external file so they can be loaded into the program by clicking a button, and when information is added, it can be saved to the file. What I want to do is this;
For the new member page, I want to have it so when the page loads, the information loads instantly without the need for the load button and skips right to the next avaliable slot in the document, so I do not have to scroll through all members to find an empty space to add a new one. Can I do this? Or do I have to manually load the data and scroll through all of them?
For the update member page, I want it so the data simply loads without the need for clicking the button (for convenience). Also, how would I add a search bar to load a specific member to edit them, so I do not need to scroll through them all to find a specific person. This would be okay with less than 10 members. But it gets harder as more members join.
Is any of this possible? If so, can you tell me how I would do it? Thank you. I think I can probably just move the code from the load button to the starting event so it loads with the page, but I'm not fully sure.
Thanks!
For the new member page, I want to have it so when the page loads, the information loads instantly without the need for the load button and skips right to the next avaliable slot in the document, so I do not have to scroll through all members to find an empty space to add a new one. Can I do this? Or do I have to manually load the data and scroll through all of them?
For the update member page, I want it so the data simply loads without the need for clicking the button (for convenience). Also, how would I add a search bar to load a specific member to edit them, so I do not need to scroll through them all to find a specific person. This would be okay with less than 10 members. But it gets harder as more members join.
Is any of this possible? If so, can you tell me how I would do it? Thank you. I think I can probably just move the code from the load button to the starting event so it loads with the page, but I'm not fully sure.
Thanks!