Adding Controls to a Toolbar Control through Code (VB.net) : Toolbar « Components « ASP.Net






Adding Controls to a Toolbar Control through Code (VB.net)

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="Microsoft.Web.UI.WebControls" %>
<%@ Register TagPrefix="IEControls" 
    Namespace="Microsoft.Web.UI.WebControls" 
    Assembly ="Microsoft.Web.UI.WebControls"
%>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If (WeekDay(Today())) = 2 Then
        Dim MyTBL = New ToolBarLabel
        MyTBL.Text = "2:00 PM Metting Today!"
        MyTBL.ToolTip = "The weekly meeting is on for today."
        MyTB.Items.Add(MyTBL)
    End If
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Adding Controls to a Toolbar Control through Code</TITLE>
</HEAD>
<BODY LEFTMARGIN="40">
<form runat="server">
<IEControls:toolbar 
    id="MyTB" 
    runat="server" 
    >
</IEControls:toolbar>
</form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.IE control toolbar with button images (C#)
2.Toolbar with icon (VB.net)
3.Toggle button on Toolbar (VB.net)
4.Toolbar with comboBox (VB.net)
5.Toolbar with textbox (VB.net)
6.Toolbar with hyperlink button (VB.net)
7.Adding a ToolbarSeparator Control to a Toolbar Control (VB.net)
8.Adding a ToolbarTextBox Control to a Toolbar Control (VB.net)
9.Adding a ToolbarButton Control to a Toolbar Control (VB.net)
10.Adding a ToolbarCheckButton Control to a Toolbar Control (VB.net)
11.Adding a ToolbarCheckGroup Control to a Toolbar Control (VB.net)
12.Adding a ToolbarDropDownList Control to a Toolbar Control (VB.net)
13.Adding a ToolbarLabel Control to a Toolbar Control (VB.net)