all groups > dotnet windows forms designtime > august 2004 >
You're in the

dotnet windows forms designtime

group:

collection editor hangs for 3 seconds when loading


collection editor hangs for 3 seconds when loading Allen Anderson
8/8/2004 3:07:33 PM
dotnet windows forms designtime:
I have a collection editor hanging off my column collection. The
collection editor seems to be working fine. However, every time I
bring it up, for the first 3 seconds or so it feels like it is
'hanging' where I can't do anything in it. While this is not a
showstopper for me by any means, it would still be nice to find out
why. Anyone else experienced this or know why it might be happening?



RE: collection editor hangs for 3 seconds when loading v-schang NO[at]SPAM online.microsoft.com
8/9/2004 8:42:00 AM
Hi Allen,

Thanks for posting here. Regarding on the issue, I am
finding proper resource to assist you and we will update as soon as posible.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security(This posting is provided "AS IS",
with no warranties, and confers no rights.)
RE: collection editor hangs for 3 seconds when loading v-jetan NO[at]SPAM online.microsoft.com (
8/10/2004 7:58:00 AM
Hi Allen,

Is your collection editor customized or the default collection editor? Can
you show me the code how you use the collection editor?

Normally, if you try the following small code snippet, does the problem
still exist?

public class UserControl1 : System.Windows.Forms.UserControl
{

private string[] arr=null;
public string [] Arr_Property
{
get
{
return arr;
}
set
{
arr=value;
}
}
}

If you use above usercontrol in the designer, VS.net will automatically
attach a CollectionEditor with Arr_Property, so you can try if this
CollectionEditor also hangs.

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
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
AddThis Social Bookmark Button