Hi,

here's my problem :
I have a main form [A] wich open a owned modal form [B].
I would like to have a form C, owned by B, wich open when B is loading .
Here is my code in B (pWizz is form C):

VB Code:
  1. Private Sub on_load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
  2.  
  3.             Dim wz As pWizz
  4.             wz = New pWizz
  5.             wz.Owner = Me
  6.             wz.Show()                       ' optional
  7.             wz.TopMost = True          ' optional
  8.  
  9. End Sub

This is ok, except, since B is modal, form C receive no events (I can't move it nor click on any control of it).

So my question is : how can I do this (B must be modal to prevent any A inputs, B and C must both be able to receive inputs) while allowing C to receive click events ?

Many thanks for any ideas.