Cannot call value Dispose () while executing createhandle ().

Source: Internet
Author: User
In multithreaded C # development, Value Dispose () cannot be invoked when error execution CreateHandle () is encountered. , this error comes out when the form is closed. The reason is that the form also has createhandle () events, so it is not possible to recycle garbage. The handle handle of the current form has not yet been created complete
Therefore, it is not possible to close the operation directly, and the workaround is as follows:

        protected override void Onvisiblechanged (EventArgs e)
        {
            base. Onvisiblechanged (e);
            if (! ishandlecreated)
            {this
                . Close ();
            }
        }


You can also override Onshown or write in the shown event response.





The first method is:
Since the contents of the SWF inside the outside has no effect, then he error error, in the closing add
C # code?

1 2 3 4 5 6 7 8 9 10 try {axshockwaveflash1.dispose (); catch (System.Exception ex) {}

In this way, when the official version is closed, the error is try out.
The second method is:
Inside the closing, add
C # code?
1 2 Mythread.abort (); this. Controls.clear ();



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.