在VB中,如何引用其他窗体中的数据。 例如在form1中的text1中输入字符,进入form2后使其输出在窗体上
展开全部
可以直接交换!你只需在form2的一个事件里面写一下代码就行、
private sub form-load(这里是FORM的那个 单词我也忘了。符号打不来)
print form.text1.text
end sub
好久没写了、输在窗体就是这样、
private sub form-load(这里是FORM的那个 单词我也忘了。符号打不来)
print form.text1.text
end sub
好久没写了、输在窗体就是这样、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果你是Print输出数据的话要在form2的Form_Load事件里加个 Form2.Show,然后再Print Form1.Text1.Text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-05-19
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication5
{
public partial class Form1 : Form
{
string s;
public Form1()
{
InitializeComponent();
}
private void radioButton1_Click(object sender, EventArgs e)
{
s = textBox1.Text;
}
private void radioButton2_Click(object sender, EventArgs e)
{
s = textBox2.Text;
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = s;
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.MaxLength = 6;
textBox2.PasswordChar = '*';
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication5
{
public partial class Form1 : Form
{
string s;
public Form1()
{
InitializeComponent();
}
private void radioButton1_Click(object sender, EventArgs e)
{
s = textBox1.Text;
}
private void radioButton2_Click(object sender, EventArgs e)
{
s = textBox2.Text;
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = s;
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.MaxLength = 6;
textBox2.PasswordChar = '*';
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在Form2中:
Print Form1.Text1.Text
或者
Label1.Caption = Form1.Text1.Text
Print Form1.Text1.Text
或者
Label1.Caption = Form1.Text1.Text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询