本文介绍了如何在vb.net中显示表格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我想要的vb.net表单中,当我单击按钮时,另一个将被打开,该表单的窗口状态是正常的.我给编码

In my vb.net form i want to when i click the button the another will be opened, that form''s window state is normal. I give the coding

Form2.show()


但是显示了form2,它将不会显示在form1的前面.它显示在form1的后面,所以我给


But the form2 is displayed it will not be displayed in front of the form1. it displays in back of the form1 so i give

Form2.show
form2.bringtofront


但是,如何操作却不起作用,请任何机构帮忙


But it is not working how to do it please any body help

推荐答案



Form2 objForm = new Form2();
objForm.Activate();
objForm.Visible = true;



这是C#形式.您可以使用代码转换器查看结果...



This is in C# form. You may use code converter to see the result...


这篇关于如何在vb.net中显示表格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 19:57