One form for al registries

Post your questions regarding programming in C# in here.
3 posts Page 1 of 1
Contributors
User avatar
hortencio
New Member
New Member
Posts: 19
Joined: Thu Apr 19, 2012 1:41 am

One form for al registries
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.
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: One form for al registries
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.
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Re: One form for al registries
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
3 posts Page 1 of 1
Return to “General coding help”