
Signature
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
> Hi Gwenda,
>
[quoted text clipped - 16 lines]
> It works well on my side.
> =================================================
I tried it the way you have mentioned but it gives me flickering. i still
see the borders of the child form momentarily and then it vanishes just
giving a flicker which looks very awkward.
is there anyway to get rid of this flicker?
> Thank you for your patience and cooperation. If you have any questions or
> concerns, please feel free to post it in the group. I am standing by to be
[quoted text clipped - 5 lines]
> Get Secure! - www.microsoft.com/security
> This posting is provided "as is" with no warranties and confers no rights.
"Jeffrey Tan[MSFT]" - 22 Dec 2004 05:49 GMT
Hi Gwenda,
Thanks for your feedback!
I am not sure what other thing in your project causes the MDI child
flickering, actually it works well on my side. If you create a sample empty
MDI container form, just put this simple code snippet does the flicker
occurs?
private void Form1_Load(object sender, System.EventArgs e)
{
Form frm = new Form();
frm.MdiParent = this;
frm.FormBorderStyle = FormBorderStyle.None;
frm.ControlBox = false;
frm.MinimizeBox = false;
frm.MaximizeBox = false;
frm.Show();
frm.Dock = DockStyle.Fill;
}
I suggest you paste some code snippet for us to reproduce out your flicker
issue, then we can reproduce out this issue and can help you better. Thanks
======================================================
Thank you for your patience and cooperation. If you have any questions or
concerns, please feel free to post it in the group. I am standing by to be
of assistance.
Best regards,
Jeffrey Tan
Microsoft Online Partner Support

Signature
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
"Jeffrey Tan[MSFT]" - 28 Dec 2004 06:14 GMT
Hi Gwenda,
Have you tried my suggestion? Have you succeeded create the reproduce
sample project? Please feel free to tell me, thanks.
Best regards,
Jeffrey Tan
Microsoft Online Partner Support

Signature
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.