|
-
Aug 26th, 2007, 12:30 PM
#1
Thread Starter
Hyperactive Member
[RESOLVED] Tab Strip And SSTabs
What is the difference between the two? Is one better than the other?
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 01:05 PM
#2
Re: Tab Strip And SSTabs
SStab is container and TabStrip is not (you need to use frames or pictureboxes with it).
SSTab is very buggy and TabStrip is basically bugs free but has some minor issues.
I personally prefer to use TabStrip over SSTab.
-
Aug 26th, 2007, 01:10 PM
#3
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
Waht are the advantages of each? I cant seem to find amny differences...
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 02:01 PM
#4
Re: Tab Strip And SSTabs
Rhino's assessment of each of those controls are correct. I also prefer the TabStrip over SSTab, because the TabStrip is more versatile, IMHO.
Regards,
Mark
Please remember to rate posts! Rate any post you find helpful. Use the link to the left - "Rate this Post". Please use [highlight='vb'] your code goes in here [/highlight] tags when posting code. When a question you asked has been resolved, please go to the top of the original post and click "Thread Tools" then select "Mark Thread Resolved."
-
Aug 26th, 2007, 02:04 PM
#5
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
But what are major advantages that tabstrip has?
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 02:07 PM
#6
Re: Tab Strip And SSTabs
 Originally Posted by Bobalandi
But what are major advantages that tabstrip has?
LOL ... It is a bug free control so it means less headach.
But there is one little thing that I love in TabStrip - it's the little scrollbar that appears when all tabs cannot fit within control's width.
SSTab does have that so perhaps it's another advantage.
-
Aug 26th, 2007, 02:12 PM
#7
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
Oh, wow, sounds helpful, also, Is there a way to allow users to add tabs during run time like on IE7 or Firefox 2?
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 02:19 PM
#8
Re: Tab Strip And SSTabs
Of course you can:
Code:
Private Sub Command2_Click()
TabStrip1.Tabs.Add , , "Tab " & TabStrip1.Tabs.Count + 1 'change caption to whatever you need
TabStrip1.Tabs(TabStrip1.Tabs.Count).Selected = True
End Sub
-
Aug 26th, 2007, 02:20 PM
#9
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
Wow, thank you, and what would be shown in this new tab?
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 02:42 PM
#10
Re: Tab Strip And SSTabs
 Originally Posted by Bobalandi
Wow, thank you, and what would be shown in this new tab?
You can have the new tab appear any where you what it to appear by using it's index property.
Regards,
Mark
Please remember to rate posts! Rate any post you find helpful. Use the link to the left - "Rate this Post". Please use [highlight='vb'] your code goes in here [/highlight] tags when posting code. When a question you asked has been resolved, please go to the top of the original post and click "Thread Tools" then select "Mark Thread Resolved."
-
Aug 26th, 2007, 02:45 PM
#11
Re: Tab Strip And SSTabs
 Originally Posted by Bobalandi
Wow, thank you, and what would be shown in this new tab?
What do you mean?
-
Aug 26th, 2007, 02:56 PM
#12
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
Like would the tab be completely empty, or what will be in the tab?
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 03:19 PM
#13
Re: Tab Strip And SSTabs
You know Bob, you're going to have to use your own imagination to solve that - you can't endlessly ask "what's going to happen if ...".
Best regards.
-
Aug 26th, 2007, 03:22 PM
#14
Thread Starter
Hyperactive Member
Re: Tab Strip And SSTabs
Ok, thanks for ALL your help, I appreciate it!
Haikus are easy.
But sometimes they don't make sense.
Refrigerator.
-
Aug 26th, 2007, 03:35 PM
#15
Re: [RESOLVED] Tab Strip And SSTabs
No problem.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|