T
tshad
I have a page with 2 Tabbed Pages on them (TabPage1, TabPage2).
I am on TabPage1 and when selecting something on the page I am displaying
information on TabPage2 and then want to go to TabPage2, but it doesn't
work.
I tried:
EmailFrom.Text = ds.Tables("Emails").Rows(row)("from_address")
EmailTo.Text = ds.Tables("Emails").Rows(row)("to_addresses")
CC.Text = ds.Tables("Emails").Rows(row)("cc_addresses")
BCC.Text = ds.Tables("Emails").Rows(row)("bcc_addresses")
Subject.Text = ds.Tables("Emails").Rows(row)("subject")
Body.Text = ds.Tables("Emails").Rows(row)("body")
TabPage1.SendToBack()
and also TabPage1.Visible = False but neither worked.
How do I get TabPage2 to display programmatically?
It works fine if I select the tab manually but I want it to automatically
display the tabbed page after the data is put on the page.
Thanks,
Tom
I am on TabPage1 and when selecting something on the page I am displaying
information on TabPage2 and then want to go to TabPage2, but it doesn't
work.
I tried:
EmailFrom.Text = ds.Tables("Emails").Rows(row)("from_address")
EmailTo.Text = ds.Tables("Emails").Rows(row)("to_addresses")
CC.Text = ds.Tables("Emails").Rows(row)("cc_addresses")
BCC.Text = ds.Tables("Emails").Rows(row)("bcc_addresses")
Subject.Text = ds.Tables("Emails").Rows(row)("subject")
Body.Text = ds.Tables("Emails").Rows(row)("body")
TabPage1.SendToBack()
and also TabPage1.Visible = False but neither worked.
How do I get TabPage2 to display programmatically?
It works fine if I select the tab manually but I want it to automatically
display the tabbed page after the data is put on the page.
Thanks,
Tom