Results 1 to 4 of 4

Thread: HTML Listbox ActiveX Control

  1. #1
    Join Date
    Apr 2009
    Posts
    79

    HTML Listbox ActiveX Control

    How to get multiple values in html listbox control. I have set "Allow Multiple Selections" option enable. What are the syntax? Looking forward to a positive answer.

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: HTML Listbox ActiveX Control

    The HotList is a new kind of listbox control that allows you to use HTML for a better looking, more functional presentation in your UI. The HotList displays HTML instead of plain text. Why use boring text-only listboxes when you can have HTML listboxes instead? The HotList is a new invention in user-interface technology that will add style to your UI! Here are some of the features of the HotList : Display any HTML text, including graphics. Complete control over background and text colors, fonts and effects Events for Click, DoubleClick, MouseOver and MouseOut, enabling you to do anything you need to do to customize your listboxes, such as changing the background or text color in the ListItem while it is selected, or even change the HTML for the ListItem. You can also pass mouse click events through to your application code by using the window.external.raiseEvent method.

    Download HotList HTML Listbox ActiveX Control 1.6

  3. #3
    Join Date
    Jan 2009
    Posts
    199

    Re: HTML Listbox ActiveX Control

    Code:
    <html>
    <body>
    <form runat="server">
    <asp:ListBox id="drop1" rows="4" runat="server">
    <asp:ListItem selected="true">Item 1</asp:ListItem>
    <asp:ListItem>emp1</asp:ListItem>
    <asp:ListItem>emp2</asp:ListItem>
    <asp:ListItem>emp3</asp:ListItem>
    <asp:ListItem>emp4</asp:ListItem>
    <asp:ListItem>emp5</asp:ListItem>
    </asp:ListBox>
    <asp:Button Text="Submit" OnClick="submit" runat="server" />
    <p><asp:label id="mess" runat="server" /></p>
    </form>
    </body>
    </html>

  4. #4
    Join Date
    Dec 2008
    Posts
    177

    Re: HTML Listbox ActiveX Control

    Code:
    <HTML>
    <HEAD>
    </HEAD>
    <form runat="server">
    <BR><BR>
    Select a Color:<BR>
    <BR><BR>
    <asp:listbox id="lb1" runat="server" selectionmode="multiple" rows=5>
        <asp:listitem value="1">Blue1</asp:listitem>
        <asp:listitem value="2">Red2</asp:listitem>
        <asp:listitem value="3">Green3</asp:listitem>
        <asp:listitem value="4" Selected>Purple4</asp:listitem>
        <asp:listitem value="5">Black5</asp:listitem>
        <asp:listitem value="6" text="Gold"/>  
    </asp:listbox>
    </form>
    </BODY>
    </HTML>

Similar Threads

  1. Vista and Quicktime 7.4 ActiveX control error 46
    By Actionguy in forum Windows Software
    Replies: 76
    Last Post: 27-12-2012, 03:49 PM
  2. Replies: 1
    Last Post: 25-10-2012, 04:32 PM
  3. Replies: 6
    Last Post: 30-06-2010, 10:54 PM
  4. C# Listbox control
    By abhinavm in forum Software Development
    Replies: 2
    Last Post: 07-08-2009, 11:01 PM
  5. IMsTscAx ActiveX Control
    By big_student in forum Software Development
    Replies: 2
    Last Post: 27-05-2009, 11:30 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,580,541.22101 seconds with 16 queries