VB.NET中点击Form1中Button1进入Form2?什么样的代码?

VB.NET中如何编写代码,点击Form1中Button1进入Form2?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.Visible = False '或者用 Me.Hide()
Form2.Show()
End Sub
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-09-23
button1事件里面;new 一个Form2 ;调用form2的show()方法;比如C#中;Form2 f2 = new form2();f2.show();this.visible=false;

VB.NET中点击Form1中Button1进入Form2?什么样的代码?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Visible = False '或者用 Me.Hide()Form2.Show()End Sub

vb.net中把窗体Form1的textbox值传给窗体Form2的textbox值,怎么实现?求...
Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim a As New Form2(TextBox1.Text) '通过参数传递,同1 a.Show()'form2.show()‘直接启动。同2 End Sub End Class Public Class Form2 Sub New(ByVal str As String)' 此调用是...

vb.net中怎么关闭现有窗口,然后打开另一个窗口?
登陆按钮里写:private void button1_Click(object sender, EventArgs e){ Form2 fo1 = new Form2();fo1.Show();this.Visible=false;} 第2个窗体的关闭事件里写 private void Form2_FormClosed(object sender, FormClosedEventArgs e){ Application.Exit();} 这样就可以了 me.dispose(); 这个...

VB.NET怎么编模拟袖珍计算器的完整程序?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim c As Char c = Trim(TextBox3.Text)Select Case c Case "+"TextBox4.Text = Val(TextBox1.Text) + Val(TextBox2.Text)Case "-"TextBox4.Text = Val(TextBox1.Text...

vb.net 窗口打开与关闭问题.
这是由于你的启动类是form1,也就是说form1是你的主函数,你关闭form1就相当于关闭程序;如果你只希望弹出form2的时候form1隐藏,可以再form2.show()之后调用form1.hide(),之后关闭form2的时候再关闭form1就可以达到你想要的效果了;再有一种做法就是你需要一个主函数类,使用它调用form1跟form2...

vb.net中使用什么语句可以使form1跳至form2
Form2 f2=new Form2();f2.Show();

vb.net 多次滚动抽奖的程序代码
)代码: public partial class Form1 : Form { public Form1() { InitializeComponent(); } System.Threading.Thread g_Thread = null; List<int> g_list = new List<int>(); int g_Num = 0; delegate void g_delegate(); \/\/\/ <summary> \/\/\/ 开...

VB.net2008实例编写文字加解密程序
单击确定 (OK) 如图1。选择Form1窗体,在Form1窗体中添加如下控件:Label1、Label2、 Label3控件,TextBox1、TextBox2、TextBox3控件,Button1与Button2控件。相关属性设置如下:我们适当地调整界面,界面设置效果如下:图2程序界面设置好后,我们需要创建类,在类中来输入与此程序相关的代码选择项目--...

密码窗体代码
在VB中要想调用Excel,需要打开VB编程环境“工程”菜单中的“引用”项目,并选取项目中的“Microsoft Excel 11.0 object library”项。由于你的Excel版本不同,所以这个选项的版本号也是不同的。form1上面有一个按钮 Private Sub Command1_Click()Form2.Show End Sub form2用作登录界面 form2的代码...

VB.NET窗体间的数据传递
在Form2类的定义中写如下代码:dim f1 as Form1=me.owner 这样f1对应的就是原来的Form1的实例了,也就可以用这个进行通讯了。但是还是要把不同类之间访问的域和函数定义成public,哎,安全确实是一个问题!!参考资料:<a href="http:\/\/www.vbgood.com\/viewthread.php?tid=39758" target="_...

相似回答