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("Emai ls").Rows(row)( "from_addre ss")
EmailTo.Text = ds.Tables("Emai ls").Rows(row)( "to_address es")
CC.Text = ds.Tables("Emai ls").Rows(row)( "cc_address es")
BCC.Text = ds.Tables("Emai ls").Rows(row)( "bcc_addresses" )
Subject.Text = ds.Tables("Emai ls").Rows(row)( "subject")
Body.Text = ds.Tables("Emai ls").Rows(row)( "body")
TabPage1.SendTo Back()
and also TabPage1.Visibl e = False but neither worked.
How do I get TabPage2 to display programmaticall y?
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("Emai ls").Rows(row)( "from_addre ss")
EmailTo.Text = ds.Tables("Emai ls").Rows(row)( "to_address es")
CC.Text = ds.Tables("Emai ls").Rows(row)( "cc_address es")
BCC.Text = ds.Tables("Emai ls").Rows(row)( "bcc_addresses" )
Subject.Text = ds.Tables("Emai ls").Rows(row)( "subject")
Body.Text = ds.Tables("Emai ls").Rows(row)( "body")
TabPage1.SendTo Back()
and also TabPage1.Visibl e = False but neither worked.
How do I get TabPage2 to display programmaticall y?
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
Comment