Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~900 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for eramax

Such code for example: [code]_TabControl TabControl = new TabControl();[/code] ========== [code]this._TabControl.Controls.Add(new TabPage()); this._TabControl.SelectedIndex = _TabControl.Controls.Count-1; _TabControl.TabPages[_TabControl.SelectedIndex].Controls.Add(new WebBrowser());[/code] ========= [code]((WebBrowser)_TabControl.TabPages[_TabControl.SelectedIndex].Controls[0]).GoForward(); ((WebBrowser)_TabControl.TabPages[_TabControl.SelectedIndex].Controls[0]).Navigate("http://bsuir.by");[/code]

Member Avatar for Fractaler
0
900

The End.