强制顺序执行

扫码查看
本文介绍了强制顺序执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个处理图像,我想在执行时间功能时显示



以下是我的代码

I have a processing image which i want to show while a time taking function is executed

Following is my code

pictureBox1.Visible=true;
send();//time taking function
pictureBox1.Visible=false;
MessageBox.show("success");



但我看不到图像和成功消息在执行结束之前发送()



请帮帮....


But i cant see the image and success message comes before the end of execution of send()

Please help....

推荐答案


这篇关于强制顺序执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-04 09:01
查看更多