I'm wondering if I'm doing this correctly, calling a listview1 from another form. So I can use a query involving listView1 of the Transactions form.
private void button2_Click(object sender, EventArgs e)
{
///transactions goback = new transactions();
//goback.button6.Enabled = true;
//this.Hide();
transactions reba = new transactions();
reba.listView1 = new ListView();
}