Need an example of Tabs usage.....

  • Thread starter Thread starter Jim Hubbard
  • Start date Start date
J

Jim Hubbard

I need an example of tabs usage like you might do in a tabbed browser
application.

I need to be able to open one or more tabs with customer data. Every tab is
laid out exactly alike, only the customer data changes from tab to tab.
Tabs should be able to be created at the front of all tabs, back of all tabs
or between any 2 tabs. Double-clicking a tab should delete it.
Double-clicking on the tab control (but NOT on a tab) should create a blank
customer data tab in front of the currently selected tab.

Any examples of tab usage in this manner would be greatly appreciated.

Thanks!
 
I need an example of tabs usage like you might do in a tabbed browser
application.

I need to be able to open one or more tabs with customer data. Every tab is
laid out exactly alike, only the customer data changes from tab to tab.
Tabs should be able to be created at the front of all tabs, back of all tabs
or between any 2 tabs. Double-clicking a tab should delete it.
Double-clicking on the tab control (but NOT on a tab) should create a blank
customer data tab in front of the currently selected tab.

Any examples of tab usage in this manner would be greatly appreciated.

Thanks!

Check out the TabControl class in the docs, in particular the TabPages
property. The TabPages property has methods like Add, Remove, IndexOf,
etc. Rather than us giving you the code, why don't you try it yourself and
if you have a specific question, ask.
--
Chris

dunawayc[AT]sbcglobal_lunchmeat_[DOT]net

To send me an E-mail, remove the "[", "]", underscores ,lunchmeat, and
replace certain words in my E-Mail address.
 
Chris Dunaway said:
Check out the TabControl class in the docs, in particular the TabPages
property. The TabPages property has methods like Add, Remove, IndexOf,
etc.

Do you really think I haven't done this already? I have and it wasn't that
helpful.
Rather than us giving you the code, why don't you try it yourself and
if you have a specific question, ask.

I find it easier to learn by example sometimes, hence the request.

I have 53 books on VB.net, including the .Net Framework Class Library
collection. Not one of them gives an example of OOP using Tabs and Tab
Pages as I have asked for here.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top