Page 1 of 1

One form for al registries

Posted: Tue May 01, 2012 4:48 am
by hortencio
I´m doing a library system. I have a form where a record all students and i also crieted a form to hace access to the student form by introducing the respective student code.
Now i would like to ask if is there any way how to open each registy in the same form.I mean, each student code i introduce in the access for it has to open a unique form, what will change is only the information of each student.That form i will put the student name, the code and the asked books as well as the dates of bringing back.

Re: One form for al registries

Posted: Tue May 01, 2012 8:00 pm
by mandai
what will change is only the information of each student
You could have a listbox that contains some basic information for each record, then you could update the information based on the selected index.

Re: One form for al registries

Posted: Tue May 01, 2012 11:06 pm
by M1z23R
add form2 to your project, then one textbox1. Then on your first form double click a button and add this:

Dim frm as new form2
frm.textbox1.text =("hi world")
frm.show