Hi:
I'm totally new to Rad WinForm controls. 2 hours into it, I have a question:
I have a GridView on an RadMDI parent form. There's also a button. Clicking the button calss a child form:
I'm totally new to Rad WinForm controls. 2 hours into it, I have a question:
I have a GridView on an RadMDI parent form. There's also a button. Clicking the button calss a child form:
Dim child1 As New Form()
child1 = FrmStdEdit 'where FrmStdEdit is the child form I designed.
Dim ChildSize As New System.Drawing.Size(580, 200)
child1.Size = ChildSize
child1.Text =
"JTK Form"
child1.MdiParent =
Me
child1.TopMost =
True
child1.Show()
When the child form opens, however, it does so underneath the gridview - even though TopMost is set to true. Is there a way to change that?
Justin