Some Misc Issues discussion

Hi Syncfusion team,
Please do check the attached file.
some of the issue i came across are mention with the scenario. In this screen sot.
looking forward to your reply.

Regards,
Maverick



SyncFusionInterface_159339a4.zip

1 Reply

FS Fathima Shalini P Syncfusion Team June 26, 2008 10:57 AM UTC

Hi Maverick,

Thank you for your interest in Syncfusion Products.

1) Left Border of the Form is not displayed Properly :

2) Vacant space is displayed when maximizing the Office2007Form:

I am afraid that I was not able to reproduce the above mentioned issues. I have tested the aboves issues in the following system configuration:

Operating System : Microsoft XP Professional
Version : 2002, SP2
Monitor Resolution : 1024 x 768

Could you please provide your system configuration details in which actually the issue is reproduced?

3) To prevent a dock control from changing the dock style:

This can be done by checking DockingStyle enumeration in DockAllow event. Please refer the below code snippet for more details:


private void dockingManager1_DockAllow(object sender, Syncfusion.Windows.Forms.Tools.DockAllowEventArgs arg)
{
if (arg.DragControl == this.documentExplorer1)
{
if (arg.DockStyle != Syncfusion.Windows.Forms.Tools.DockingStyle.Right)
{
arg.Cancel = true;
}
}
}


Please refer the below sample for more details:

http://websamples.syncfusion.com/samples/Tools.windows/F74272/main.htm

Please let me know if any concerns.

Regards,
Fathima


Loader.
Up arrow icon