I have a form 'frmPerfis' which when open it executes the routine 'RoutineRefresh' (to update data from a listview) that is inside the 'Form_Load'. Inside this form has the form 'frmPerfisAlterar' and when I call and save the changes in the registry it writes the information and then does the following (closes the current form and goes to 'frmPerfis':
... Unload Me frmPerfis.Show ...
When opening 'frmPerfis' I understand that the 'Form_Load' routine (the 'RoutineRefresh') should be executed in order for the listview to come up with the updated data. But this does not happen. How can I make this work?