Save data and insert into CheckBox

1

To begin I will already expose my problem: After the person responsible for adding this new service how will it automatically appear in the form where the list of all services in the form of checkbox is?

At this moment I am developing a project of end of course and in the middle came to me a problem that I do not know how to solve.

Well, it's a Visual Basic application that records what a particular student / teacher does in the school library. One of the buttons we have is the insertion of a new service that the library may one day later add to your list in the database. In a separate form, we will have a list with all this data from the database in checkbox to select what the user will do in the library to be able to submit.

New service registration form

Thewayweplantosubmitdata
(herewasanewcheckbox,dependingonwhatwascreated)

    
asked by anonymous 01.06.2015 / 16:27

1 answer

1

Save the services to a table in the database. To display all the options for the employee, the ideal is to use a ComboBox, because the presentation mode is independent of the amount of services. Just make a SELECT in the database and enter the values in the ComboBox options.

    
01.06.2015 / 23:12