Link to home
Create AccountLog in
Avatar of mohgt
mohgt

asked on

reload a Mdi Child Form if it is already open

How to Refresh a Mdi Child Form if it is already open
ASKER CERTIFIED SOLUTION
Avatar of Luis Pérez
Luis Pérez
Flag of Spain image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
If you want to do this from any form (not the mdi parent) then use

For each frm As Form In My.Application.OpenForms
     If Typeof(frm) is frmMyForm Then
         frm.Activate
     End If
Next