Some beautiful example of tabcontrol ?

  • Thread starter Thread starter pamela fluente
  • Start date Start date
P

pamela fluente

Hi,

I want to try design a TabControl (for instance
http://www.codeproject.com/vb/net/MDITabControl.asp).

For design inspiration, I would like to know pointers to
beautifully looking tabcontrol design either on the web or within
applications.

BTW: I do not want copy anything: just to see what has been done
and perhaps start from there! :-)


Thanks for any suggestion,

-P
 
I want to try design a TabControl (for instancehttp://www.codeproject.com/vb/net/MDITabControl.asp).

For design inspiration, I would like to know pointers to
beautifully looking tabcontrol design either on the web or within
applications.

That's a VB programming control for use in desktop applications. You
can use this on the web by writing an ActiveX control and deploying it
on a web page, but that's a M$oft-only technique that should be
strongly avoided for Web work.

On the web, the "Sliding Doors" technique is about the best approach
around. It's based on text, not images. It handles text re-sizing and
fluid design well. It requires little effort to construct the few
decorative images it does require.

If you _must_ use a graphic representation of a font on the web,
rather than allowing the browser to render it for you (a bad idea),
then the "Rollerblind" technique is probably best.
 
That's a VB programming control for use in desktop applications. You
can use this on the web by writing an ActiveX control and deploying it
on a web page, but that's a M$oft-only technique that should be
strongly avoided for Web work.

On the web, the "Sliding Doors" technique is about the best approach
around. It's based on text, not images. It handles text re-sizing and
fluid design well. It requires little effort to construct the few
decorative images it does require.

If you _must_ use a graphic representation of a font on the web,
rather than allowing the browser to render it for you (a bad idea),
then the "Rollerblind" technique is probably best.

You got the idea. I have been talking about "tabcontrol" in a
*general* sense, just
to get the idea. (So it's not really a rogue crosspost :-) ).

Any similar mechanism on web pages or forms will do.

Thank you.

-P
 
pamela fluente said:
Hi,

I want to try design a TabControl (for instance
http://www.codeproject.com/vb/net/MDITabControl.asp).

For design inspiration, I would like to know pointers to
beautifully looking tabcontrol design either on the web or within
applications.

I have used this 3rd party package
http://www.xtras.net/products/pintab/
after giving up on multiview

You can download the entire package and try out all the demos or just run
the "live demo" here
http://www.pintexx.com/

I bought it and it is well worth the $80 USD. Was much faster than rolling
my own aspx pages using multiview in VS2005. They have a forum but it is
not that great.
--
======================================================================
Joseph "Beemer Biker" Stateson
http://TipsForTheComputingImpaired.com
http://ResearchRiders.org Ask about my 99'R1100RT
======================================================================
 
Back
Top