Tab Control?

N

Not Really Me

Is there a tab control available? I would like to have a standard tab
control on one page, but I can't seem to locate one.

Scott
 
M

Mike Mueller

that would be the 'tabindex' attribute, and the numbering
starts at one.

<html><body>
<a tabindex="1" href="#">1st item and 1st tab</a>
<a tabindex="3" href="#">2nd item and 3rd tab</a>
<a tabindex="2" href="#">3rd item and 2nd tab</a>
</body></html>

Which should tab from the 1st item to the 3rd item and then
back to the second


: Is there a tab control available? I would like to have a
standard tab
: control on one page, but I can't seem to locate one.
:
: Scott
:
:
 
N

Not Really Me

Somehow I knew I needed to explain better. I am not looking for the tab
sequence control, but rather for an activex control or something like it
that will simulate a set of tabs. Essentially the same as the currenlty
open page tabs you see on FP itself In Visual C 6.0 dialogs this is called
a "Tab Control". In .net versions it is TabControl.
 
M

Mike Mueller

I was hesitant about my reply for that exact reason- I
thought that you might have been looking for something else
too!


: Somehow I knew I needed to explain better. I am not
looking for the tab
: sequence control, but rather for an activex control or
something like it
: that will simulate a set of tabs. Essentially the same as
the currenlty
: open page tabs you see on FP itself In Visual C 6.0
dialogs this is called
: a "Tab Control". In .net versions it is TabControl.
:
:
: : > that would be the 'tabindex' attribute, and the
numbering
: > starts at one.
: >
: > <html><body>
: > <a tabindex="1" href="#">1st item and 1st tab</a>
: > <a tabindex="3" href="#">2nd item and 3rd tab</a>
: > <a tabindex="2" href="#">3rd item and 2nd tab</a>
: > </body></html>
: >
: > Which should tab from the 1st item to the 3rd item and
then
: > back to the second
: >
: >
: > : > : Is there a tab control available? I would like to
have a
: > standard tab
: > : control on one page, but I can't seem to locate one.
: > :
: > : Scott
: > :
: > :
: >
: >
:
:
 

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

Top