No worries!
So what i'm trying to do is keep information from one form to another. I know of two ways right now of doing it.
According to the user who has done the log in, some information is displayed and some not...
So:
1st method: passing the information of the user from form to form throuhg text boxes and labels (basically is employeeId, which can be in a text box no visible), but i get the information from one form to another that is what i need.
Forms!MyForm2!MyTextBox.Text="employeeId"
2n method: keeping the information in a cookie, so i can have it in every form, when i need it. The problem is to destroy the cookie when the user close the application.