C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2722
Number of posts: 5749

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Listbox Posted by Terraliminus on 30 Jun 2003 at 7:52 AM
This message was edited by Terraliminus at 2003-7-1 2:54:51

I am having some problems with the listbox control in C#. I want to log everything that happends in the listbox and therefore I need some kind of onChange event. I can't however find any event that works!

I'm adding items to the listbox like Listbox.Items.Add()

So every time that happends an event has to be triggered, I'd think the ontext event should work, but it does nothing. Am I doing something wrong?




Report
Re: Listbox Posted by yuval on 1 Jul 2003 at 8:27 AM
This message was edited by yuval at 2003-7-1 8:29:18


Try this

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace onLIstBoxChanged
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{

private System.Windows.Forms.ListBox listBox2;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;

public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();

//
// TODO: Add any constructor code after InitializeComponent call
//
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{

this.listBox2 = new System.Windows.Forms.ListBox();
this.SuspendLayout();

//
// listBox2
//
this.listBox2.Location = new System.Drawing.Point(88, 176);
this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(136, 56);
this.listBox2.TabIndex = 2;
this.listBox2.SelectedIndexChanged += new System.EventHandler(this.listBox2_SelectedIndexChanged);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.listBox2,
this.button1});
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);

}
#endregion

/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}

private void Form1_Load(object sender, System.EventArgs e)
{
for (int i=0; i<6;++i)
listBox2.Items.Add ("Item "+ (i+1).ToString());

}


private void listBox2_SelectedIndexChanged(object sender, System.EventArgs e)
{
MessageBox.Show (listBox2.Text);
}
}
}





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.