473,651 Members | 3,068 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

tabstrip/multipage

Hello

I've been using the tabstrip and multipage controls and really like the way
this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can only
find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate any
examples or insight.

Thanks

Mardy
Nov 19 '05 #1
9 2460
have you tried using the selectedindexch anged .
But you have to set Autopostback ="true" and remember the tabstrip index
starts from "0"
Hope that helps
Patrick

"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:1D******** *************** ***********@mic rosoft.com...
Hello

I've been using the tabstrip and multipage controls and really like the way this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can only find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate any examples or insight.

Thanks

Mardy

Nov 19 '05 #2
For example
If YourTab.Selecte dIndex = 0 Then
tsHoriz.Items(0 ).Enabled = True
tsHoriz.Items(1 ).Enabled = False
End If
Hope this helps
Patrick

"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:1D******** *************** ***********@mic rosoft.com...
Hello

I've been using the tabstrip and multipage controls and really like the way this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can only find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate any examples or insight.

Thanks

Mardy

Nov 19 '05 #3
Patrick Thanks

I'm using the tabstip as a series of input screens to capture information,
Once the process is complete, I need to hide one of the tabs. So I'd like to
hide an entire tab dynamically from the code behind if the status of the
record is "approved".

I tried using the example you gave but had no success.

"Patrick.O. Ige" wrote:
For example
If YourTab.Selecte dIndex = 0 Then
tsHoriz.Items(0 ).Enabled = True
tsHoriz.Items(1 ).Enabled = False
End If
Hope this helps
Patrick

"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:1D******** *************** ***********@mic rosoft.com...
Hello

I've been using the tabstrip and multipage controls and really like the

way
this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can

only
find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate

any
examples or insight.

Thanks

Mardy


Nov 19 '05 #4
I think I got it

Aspx page:
<iewc:tabstri p id="tsHoriz" runat="server" >
<iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
<iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
<iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
<iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
<iewc:Tab Text="Results" id="tab2"></iewc:Tab>
<iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
<iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
<iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
<iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
<iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
<iewc:multipa ge id="mpHoriz" ...>
<iewc:PageVie w id="p0">...
</iewc:PageView>
<iewc:PageVie w id="p1">...
</iewc:PageView>
....
</iewc:multipage>

code behind:
Protected tab0 As Microsoft.Web.U I.WebControls.T ab
Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab1 As Microsoft.Web.U I.WebControls.T ab
Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab2 As Microsoft.Web.U I.WebControls.T ab
Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab3 As Microsoft.Web.U I.WebControls.T ab
Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab4 As Microsoft.Web.U I.WebControls.T ab
Protected p0 As Microsoft.Web.U I.WebControls.P ageView
Protected p1 As Microsoft.Web.U I.WebControls.P ageView
Protected p2 As Microsoft.Web.U I.WebControls.P ageView
Protected p3 As Microsoft.Web.U I.WebControls.P ageView
Protected p4 As Microsoft.Web.U I.WebControls.P ageView
'in my sub that checks status of the current record.
tsHoriz.Items.R emove(tab1)
tsHoriz.Items.R emove(ts1)
mpHoriz.Control s.Remove(p1)

Mardy
"Mardy" wrote:
Hello

I've been using the tabstrip and multipage controls and really like the way
this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can only
find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate any
examples or insight.

Thanks

Mardy

Nov 19 '05 #5
One final note

This gets me close BUT if I have a postback anywhere in the tabstrip page,
I get a nasty viewstate error. This is apparently due to the removal of the
mutipage item.


"Mardy" wrote:
I think I got it

Aspx page:
<iewc:tabstri p id="tsHoriz" runat="server" >
<iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
<iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
<iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
<iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
<iewc:Tab Text="Results" id="tab2"></iewc:Tab>
<iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
<iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
<iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
<iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
<iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
<iewc:multipa ge id="mpHoriz" ...>
<iewc:PageVie w id="p0">...
</iewc:PageView>
<iewc:PageVie w id="p1">...
</iewc:PageView>
...
</iewc:multipage>

code behind:
Protected tab0 As Microsoft.Web.U I.WebControls.T ab
Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab1 As Microsoft.Web.U I.WebControls.T ab
Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab2 As Microsoft.Web.U I.WebControls.T ab
Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab3 As Microsoft.Web.U I.WebControls.T ab
Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab4 As Microsoft.Web.U I.WebControls.T ab
Protected p0 As Microsoft.Web.U I.WebControls.P ageView
Protected p1 As Microsoft.Web.U I.WebControls.P ageView
Protected p2 As Microsoft.Web.U I.WebControls.P ageView
Protected p3 As Microsoft.Web.U I.WebControls.P ageView
Protected p4 As Microsoft.Web.U I.WebControls.P ageView
'in my sub that checks status of the current record.
tsHoriz.Items.R emove(tab1)
tsHoriz.Items.R emove(ts1)
mpHoriz.Control s.Remove(p1)

Mardy
"Mardy" wrote:
Hello

I've been using the tabstrip and multipage controls and really like the way
this combination allows users to switch between tabs without a postback.

I'd like to get more detailed information about these controls but can only
find basic information on the internet. In particular, I'd like to hide or
disable tabs dynamically and I'm not sure how to do this. I'd appreciate any
examples or insight.

Thanks

Mardy

Nov 19 '05 #6
Try using :- tsHoriz.Items(1 ).Enabled = False
There were some issues when i worked with the TABSTRIP but can't really
recall now.
Let me know if that doesn;t work and i''ll get back to you.
Patrick
"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:6D******** *************** ***********@mic rosoft.com...
One final note

This gets me close BUT if I have a postback anywhere in the tabstrip page, I get a nasty viewstate error. This is apparently due to the removal of the mutipage item.


"Mardy" wrote:
I think I got it

Aspx page:
<iewc:tabstri p id="tsHoriz" runat="server" >
<iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
<iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
<iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
<iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
<iewc:Tab Text="Results" id="tab2"></iewc:Tab>
<iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
<iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
<iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
<iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
<iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
<iewc:multipa ge id="mpHoriz" ...>
<iewc:PageVie w id="p0">...
</iewc:PageView>
<iewc:PageVie w id="p1">...
</iewc:PageView>
...
</iewc:multipage>

code behind:
Protected tab0 As Microsoft.Web.U I.WebControls.T ab
Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab1 As Microsoft.Web.U I.WebControls.T ab
Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab2 As Microsoft.Web.U I.WebControls.T ab
Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab3 As Microsoft.Web.U I.WebControls.T ab
Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab4 As Microsoft.Web.U I.WebControls.T ab
Protected p0 As Microsoft.Web.U I.WebControls.P ageView
Protected p1 As Microsoft.Web.U I.WebControls.P ageView
Protected p2 As Microsoft.Web.U I.WebControls.P ageView
Protected p3 As Microsoft.Web.U I.WebControls.P ageView
Protected p4 As Microsoft.Web.U I.WebControls.P ageView
'in my sub that checks status of the current record.
tsHoriz.Items.R emove(tab1)
tsHoriz.Items.R emove(ts1)
mpHoriz.Control s.Remove(p1)

Mardy
"Mardy" wrote:
Hello

I've been using the tabstrip and multipage controls and really like the way this combination allows users to switch between tabs without a postback.
I'd like to get more detailed information about these controls but can only find basic information on the internet. In particular, I'd like to hide or disable tabs dynamically and I'm not sure how to do this. I'd appreciate any examples or insight.

Thanks

Mardy

Nov 19 '05 #7
Tried that without success

"Patrick.O. Ige" wrote:
Try using :- tsHoriz.Items(1 ).Enabled = False
There were some issues when i worked with the TABSTRIP but can't really
recall now.
Let me know if that doesn;t work and i''ll get back to you.
Patrick
"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:6D******** *************** ***********@mic rosoft.com...
One final note

This gets me close BUT if I have a postback anywhere in the tabstrip

page,
I get a nasty viewstate error. This is apparently due to the removal of

the
mutipage item.


"Mardy" wrote:
I think I got it

Aspx page:
<iewc:tabstri p id="tsHoriz" runat="server" >
<iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
<iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
<iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
<iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
<iewc:Tab Text="Results" id="tab2"></iewc:Tab>
<iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
<iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
<iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
<iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
<iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
<iewc:multipa ge id="mpHoriz" ...>
<iewc:PageVie w id="p0">...
</iewc:PageView>
<iewc:PageVie w id="p1">...
</iewc:PageView>
...
</iewc:multipage>

code behind:
Protected tab0 As Microsoft.Web.U I.WebControls.T ab
Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab1 As Microsoft.Web.U I.WebControls.T ab
Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab2 As Microsoft.Web.U I.WebControls.T ab
Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab3 As Microsoft.Web.U I.WebControls.T ab
Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
Protected tab4 As Microsoft.Web.U I.WebControls.T ab
Protected p0 As Microsoft.Web.U I.WebControls.P ageView
Protected p1 As Microsoft.Web.U I.WebControls.P ageView
Protected p2 As Microsoft.Web.U I.WebControls.P ageView
Protected p3 As Microsoft.Web.U I.WebControls.P ageView
Protected p4 As Microsoft.Web.U I.WebControls.P ageView
'in my sub that checks status of the current record.
tsHoriz.Items.R emove(tab1)
tsHoriz.Items.R emove(ts1)
mpHoriz.Control s.Remove(p1)

Mardy
"Mardy" wrote:

> Hello
>
> I've been using the tabstrip and multipage controls and really like the way > this combination allows users to switch between tabs without a postback. >
> I'd like to get more detailed information about these controls but can only > find basic information on the internet. In particular, I'd like to hide or > disable tabs dynamically and I'm not sure how to do this. I'd appreciate any > examples or insight.
>
> Thanks
>
> Mardy


Nov 19 '05 #8
Will get back to you
Patrick

"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:F8******** *************** ***********@mic rosoft.com...
Tried that without success

"Patrick.O. Ige" wrote:
Try using :- tsHoriz.Items(1 ).Enabled = False
There were some issues when i worked with the TABSTRIP but can't really
recall now.
Let me know if that doesn;t work and i''ll get back to you.
Patrick
"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:6D******** *************** ***********@mic rosoft.com...
One final note

This gets me close BUT if I have a postback anywhere in the tabstrip

page,
I get a nasty viewstate error. This is apparently due to the removal
of the
mutipage item.


"Mardy" wrote:

> I think I got it
>
> Aspx page:
> <iewc:tabstri p id="tsHoriz" runat="server" >
> <iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
> <iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
> <iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
> <iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
> <iewc:Tab Text="Results" id="tab2"></iewc:Tab>
> <iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
> <iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
> <iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
> <iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
> <iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
> <iewc:multipa ge id="mpHoriz" ...>
> <iewc:PageVie w id="p0">...
> </iewc:PageView>
> <iewc:PageVie w id="p1">...
> </iewc:PageView>
> ...
> </iewc:multipage>
>
> code behind:
> Protected tab0 As Microsoft.Web.U I.WebControls.T ab
> Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab1 As Microsoft.Web.U I.WebControls.T ab
> Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab2 As Microsoft.Web.U I.WebControls.T ab
> Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab3 As Microsoft.Web.U I.WebControls.T ab
> Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab4 As Microsoft.Web.U I.WebControls.T ab
> Protected p0 As Microsoft.Web.U I.WebControls.P ageView
> Protected p1 As Microsoft.Web.U I.WebControls.P ageView
> Protected p2 As Microsoft.Web.U I.WebControls.P ageView
> Protected p3 As Microsoft.Web.U I.WebControls.P ageView
> Protected p4 As Microsoft.Web.U I.WebControls.P ageView
>
>
> 'in my sub that checks status of the current record.
> tsHoriz.Items.R emove(tab1)
> tsHoriz.Items.R emove(ts1)
> mpHoriz.Control s.Remove(p1)
>
> Mardy
>
>
> "Mardy" wrote:
>
> > Hello
> >
> > I've been using the tabstrip and multipage controls and really
like the way
> > this combination allows users to switch between tabs without a

postback.
> >
> > I'd like to get more detailed information about these controls but
can only
> > find basic information on the internet. In particular, I'd like to

hide or
> > disable tabs dynamically and I'm not sure how to do this. I'd

appreciate any
> > examples or insight.
> >
> > Thanks
> >
> > Mardy


Nov 19 '05 #9
Mardy..
This should guide you with the Tabstrip:-
http://aspnet101.com/aspnet101/tutorials.aspx?id=28
Hope that helps
Patrick

"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:F8******** *************** ***********@mic rosoft.com...
Tried that without success

"Patrick.O. Ige" wrote:
Try using :- tsHoriz.Items(1 ).Enabled = False
There were some issues when i worked with the TABSTRIP but can't really
recall now.
Let me know if that doesn;t work and i''ll get back to you.
Patrick
"Mardy" <Ma***@discussi ons.microsoft.c om> wrote in message
news:6D******** *************** ***********@mic rosoft.com...
One final note

This gets me close BUT if I have a postback anywhere in the tabstrip

page,
I get a nasty viewstate error. This is apparently due to the removal
of the
mutipage item.


"Mardy" wrote:

> I think I got it
>
> Aspx page:
> <iewc:tabstri p id="tsHoriz" runat="server" >
> <iewc:Tab Text="Assessmen t Details" id="tab0"></iewc:Tab>
> <iewc:TabSepara tor id="ts0"></iewc:TabSeparat or>
> <iewc:Tab Text="Allocate Requirements" id="tab1"></iewc:Tab>
> <iewc:TabSepara tor id="ts1"></iewc:TabSeparat or>
> <iewc:Tab Text="Results" id="tab2"></iewc:Tab>
> <iewc:TabSepara tor id="ts2"></iewc:TabSeparat or>
> <iewc:Tab Text=" Design Comments" id="tab3"></iewc:Tab>
> <iewc:TabSepara tor id="ts3"></iewc:TabSeparat or>
> <iewc:Tab Text="Attachmen ts" id="tab4"></iewc:Tab>
> <iewc:TabSepara tor DefaultStyle="w idth:100%;"></iewc:TabSeparat or>
> <iewc:multipa ge id="mpHoriz" ...>
> <iewc:PageVie w id="p0">...
> </iewc:PageView>
> <iewc:PageVie w id="p1">...
> </iewc:PageView>
> ...
> </iewc:multipage>
>
> code behind:
> Protected tab0 As Microsoft.Web.U I.WebControls.T ab
> Protected ts0 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab1 As Microsoft.Web.U I.WebControls.T ab
> Protected ts1 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab2 As Microsoft.Web.U I.WebControls.T ab
> Protected ts2 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab3 As Microsoft.Web.U I.WebControls.T ab
> Protected ts3 As Microsoft.Web.U I.WebControls.T abSeparator
> Protected tab4 As Microsoft.Web.U I.WebControls.T ab
> Protected p0 As Microsoft.Web.U I.WebControls.P ageView
> Protected p1 As Microsoft.Web.U I.WebControls.P ageView
> Protected p2 As Microsoft.Web.U I.WebControls.P ageView
> Protected p3 As Microsoft.Web.U I.WebControls.P ageView
> Protected p4 As Microsoft.Web.U I.WebControls.P ageView
>
>
> 'in my sub that checks status of the current record.
> tsHoriz.Items.R emove(tab1)
> tsHoriz.Items.R emove(ts1)
> mpHoriz.Control s.Remove(p1)
>
> Mardy
>
>
> "Mardy" wrote:
>
> > Hello
> >
> > I've been using the tabstrip and multipage controls and really
like the way
> > this combination allows users to switch between tabs without a

postback.
> >
> > I'd like to get more detailed information about these controls but
can only
> > find basic information on the internet. In particular, I'd like to

hide or
> > disable tabs dynamically and I'm not sure how to do this. I'd

appreciate any
> > examples or insight.
> >
> > Thanks
> >
> > Mardy


Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2038
by: vikaskuk | last post by:
hi all, i am using tabstrip with multipage control in asp.net. i have put some textboxes on the first tab. my requirement is that whenever user makes some changes in any of textbox and moves to next tab without saving this data he should get alert message and should be stopped on current tab itself.
1
1544
by: szabelin | last post by:
Is it possible to dynamically add a PageView to MultiPage? TabStrip has items property, so Tab and TabSeparator can be added... how about adding PageView to MultiPage? If not possible please recommend another client-side tab control. Thank you
0
1526
by: Do | last post by:
Hi, I'm using the Microsoft IE Web Control for tabstrip. After a user enters some data and submits it, I want to activate another tab (and in making that tab active, I will also show another page (from multipage). How do I get at the tabstrip or multipage properties to set them? Do I set the selectedindex if I want it active?
0
1854
by: mehul | last post by:
CheckBox template always evaluate to False even if checked in a DataGrid hosted inside a TabStrip in ASP.NET Hi, I am trying to develop an ASP.NET application. I am using TabStrip (which is part of IE WebControls). Inside a tab I have a datagrid defined as follows:
0
1606
by: Greg Taylor | last post by:
I'm using the IE webcontrols (obviously) trying to dynamically generate a tabstrip based of a DTS package. I can get the tabstrip to show if I assign the generation after the page completely loads and I trigger the execution to a button/click/etc... However if I try to link the execution to onLoad I get "dynaPage is undefined." DynaPage being the multipage I create dynamically. Not sure why, and what I need to change to fix this. Any...
3
6159
by: DalePres | last post by:
I have an application that uses the Microsoft.Web.UI.WebControls.TabStrip and Multipage controls. When I test the app on my pc or on my client's development web servers the controls render properly. When I deploy the app to the test environment - supposedly an exact duplicate of the development environment - the TabStrip and Multipage controls do not render - the text of the tabs are displayed in a line, but no tabs. This is the same...
0
1031
by: sri_san | last post by:
Hello, I have a tabstrip/Multipage control. The data in the Multipage comes from the database. For some reason, even if the autopostbask is set to false, the tabtrip does a postback. Code outlined below: <iewc:tabstrip id="tabEditPendingSpInfo" autopostback="false" runat="server" Width="100%" TabSelectedStyle="background-color:#ffffff;color:Navy" TabHoverStyle="background-color:navy"...
9
8468
by: Phin | last post by:
Hi, I have spent some time trying to get the tabstrip and multipage to work (from the IE web controls). I read the article from: http://msdn.microsoft.com/library/default.asp?url=/workshop/webcontrols/overview/tabstrip.asp On the bottom of the above URL there is a button that says "show me" where you can see the tabstip and multipage in action. On the "show me"
3
1140
by: Patrick.O.Ige | last post by:
I'm planning to use TABSTRIP as my Navigation menu for a HR Sysytem. As anybody used something similar and how did it go ? Any limitations etc..? Or a proposed MENU for a HR system? Advices are welcomes Thanks
0
8361
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8278
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8807
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8584
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7299
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5615
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4144
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4290
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1588
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.