Hi everyone,
I'm using the ultraTabbedMdiManager to manage the mdi form of my aplication. The problem i have is when i open a new mdi child they come back to the first form and don't activate the new form.
i try to use this code to activate the form
frm.MdiParent = TheMainForm; frm.Show(); frm.BringToFront(); frm.Activate();
Hi Norberto,
The default behavior of the ultraTabbedMdiManager is that the new form is automatically activated and brought to the front. The only thing that would explain this is that you are doing something in your code to override this default behavior. I need some more information as to what you are doing that may affect this.
Regards,Ari Shaposhnik
I found what are causing this behavior. I'm using an other form to search my Invoice by ID. I'm calling that form as ShowDialog(). That are causing that my form go back to the first one. Now i have too work with that .
Thank for the help Ari Shaposhnik