TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Josh Dycus
NA
11
20.4k
treeview and tabcontrol with multiple tabs
Sep 3 2010 10:23 AM
Hello,
I am new to the forum and fairly new to C#. I am building a program that has a splitcontainer. One side has a treeview and the other side has a Tab control . When the treenodes are selected it draws 3 tabs and a web control on every tab. Each tab has it's own URL that it navigates to. What i am trying to do is only navigate to the first tab when the node is clicked and not navigate to the other URL's until the tabs are clicked on. Here is a the code for one of the nodes:
switch (e.Node.Text)
{
case "GX620":
#region GX620 Tab Controls
tabControl1.TabPages.Add(TP);
tabControl1.TabPages.Add(TP1);
tabControl1.TabPages.Add(TP2);
TP.Text = ("Drivers");
TP1.Text = ("Service Manuals");
TP2.Text = ("System Specs");
WB.Dock = DockStyle.Fill;
WB1.Dock = DockStyle.Fill;
WB2.Dock = DockStyle.Fill;
this.TP.Controls.Add(WB);
this.TP1.Controls.Add(WB1);
this.TP2.Controls.Add(WB2);
#endregion
WB.Navigate(URL);
WB1.Navigate(URL);
WB2.Navigate(URL);
break;
Where URL is there is actually a web address not just URL. Any help would be appreciated.
Thanks
Reply
Answers (
1
)
fetch data through employee_code in textbox...
Using looping concept I want to Display a word input as Capital letter and output as Capital-Small-Capital-Small and so...on.