Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 29th, 2004, 01:19 AM
Authorized User
 
Join Date: Apr 2004
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Default About listbox

In ListBox
how can make the item I selected change for another color

thanks for your help

 
Old April 29th, 2004, 06:17 AM
Authorized User
 
Join Date: Apr 2004
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi there!!

This is what I can come up with so far. You can use a string variable instead of a textbox.

I cannot find anything where you only change the color of the selected text but I will see if I can find anything else.

private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
    textBox1.Text = listBox1.Text;
    int count = 0;
    count = listBox1.SelectedIndex;
    if(count == listBox1.SelectedIndex)
    //if(listBox1.Text == textBox1.Text)
    {
        listBox1.BackColor = Color.Beige;
        listBox1.ForeColor = Color.Blue;
        textBox1.ForeColor = listBox1.ForeColor;
    }
}

Good Luck

Jan

dude_in_africa





Similar Threads
Thread Thread Starter Forum Replies Last Post
ListBox obrienkev C# 2005 4 November 6th, 2007 03:15 AM
multiple Listbox values in another listbox terryv Excel VBA 0 June 27th, 2007 07:01 AM
ListBox kanoorani Beginning VB 6 4 September 12th, 2006 12:28 PM
Listbox vanjamier Pro JSP 0 January 6th, 2005 09:44 PM
I'm back :) Listbox var from listbox MichaelTJ .NET Web Services 2 October 21st, 2003 07:06 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.