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?
Steven Cheng[MSFT] - 09 Aug 2004 09:42 GMT
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.)
"Jeffrey Tan[MSFT]" - 10 Aug 2004 08:58 GMT
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

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