Click here to Skip to main content
15,909,953 members
Home / Discussions / C#
   

C#

 
AnswerRe: Thread.Sleep Executing at Wrong Time Pin
Dave Kreskowiak17-Feb-06 5:35
mveDave Kreskowiak17-Feb-06 5:35 
GeneralRe: Thread.Sleep Executing at Wrong Time Pin
redfish3417-Feb-06 19:09
redfish3417-Feb-06 19:09 
GeneralRe: Thread.Sleep Executing at Wrong Time Pin
Dave Kreskowiak18-Feb-06 3:39
mveDave Kreskowiak18-Feb-06 3:39 
Questiondoubt about listbox Pin
ffrr17-Feb-06 4:24
ffrr17-Feb-06 4:24 
Questionevent handler problem (a lv created in usercontrol and displayed in a child form) Pin
nycadr17-Feb-06 3:51
nycadr17-Feb-06 3:51 
AnswerRe: event handler problem (a lv created in usercontrol and displayed in a child form) Pin
J4amieC17-Feb-06 4:03
J4amieC17-Feb-06 4:03 
Questionevent handler problem (a listview created in a usercontrol and displayed in a child form) Pin
nycadr17-Feb-06 3:49
nycadr17-Feb-06 3:49 
Questionevent handler problem (a listview created in usercontrol and displayed in a child form ) Pin
nycadr17-Feb-06 3:47
nycadr17-Feb-06 3:47 
In a usercontrol i create a ListView control with a handler for the click event. In this usercontrol i create a new form and i send the reference of my ListView to it and also attach it to the Controls of the form(Obs: my ListView control isn't in the Controls of my usercontrol, it's only created there).
At runtime when i select an item from the ListView the handler method is executed, then the form closes and when i reopen the form(with the same attached ListView) when i try to select an item the same handler method isn't executed(Obs: Before I close the form I erase the reference of the ListView from the Controls of the form so the dispose method won't affect it)

Code:
public class myusercontrol: System.Windows.Forms.UserControl
{
....
private void InitLv()
{
this.lv = new System.Windows.Forms.ListView();
lv.Click+=new EventHandler(lv_Click);
.......
}
private void lv_Click(object sender, System.EventArgs e)
{
.......//this method is executed only once
}
private void btn_drop_Click(object sender, System.EventArgs e)
{
MyForm popup = new MyForm ();
popup.AddLv(this.lv);
....
}

}

In MyForm:
...
public void AddLv(System.Windows.Forms.ListView lv)
{
this.SuspendLayout();
this.Controls.Add(lv);
this.ResumeLayout(false);
}
public void CloseForm()
{
RemoveLVTV();// this remove de lv from Controls
this.Close();
}

nycadr
QuestionUse of oRTP in C#.Net Pin
Divyang Mithaiwala17-Feb-06 3:39
Divyang Mithaiwala17-Feb-06 3:39 
AnswerRe: Use of oRTP in C#.Net Pin
Judah Gabriel Himango17-Feb-06 4:48
sponsorJudah Gabriel Himango17-Feb-06 4:48 
QuestionClearing a data binded image Pin
Chals17-Feb-06 2:49
Chals17-Feb-06 2:49 
GeneralC# asp.net Pin
Jijo BP17-Feb-06 2:40
Jijo BP17-Feb-06 2:40 
GeneralRe: C# asp.net Pin
toxcct17-Feb-06 2:44
toxcct17-Feb-06 2:44 
GeneralRe: C# asp.net Pin
benjymous17-Feb-06 2:46
benjymous17-Feb-06 2:46 
JokeRe: C# asp.net Pin
Nish Nishant17-Feb-06 2:47
sitebuilderNish Nishant17-Feb-06 2:47 
GeneralRe: C# asp.net Pin
Le centriste17-Feb-06 2:50
Le centriste17-Feb-06 2:50 
GeneralRe: C# asp.net Pin
Ray Kinsella17-Feb-06 2:51
Ray Kinsella17-Feb-06 2:51 
GeneralRe: C# asp.net Pin
Daniel Turini17-Feb-06 2:55
Daniel Turini17-Feb-06 2:55 
GeneralRe: C# asp.net Pin
benjymous17-Feb-06 3:01
benjymous17-Feb-06 3:01 
GeneralRe: C# asp.net Pin
Ryan Roberts17-Feb-06 3:05
Ryan Roberts17-Feb-06 3:05 
JokeRe: C# asp.net Pin
CWIZO17-Feb-06 3:47
CWIZO17-Feb-06 3:47 
GeneralRe: C# asp.net Pin
redfish3417-Feb-06 4:53
redfish3417-Feb-06 4:53 
GeneralRe: C# asp.net Pin
Dave Kreskowiak17-Feb-06 5:25
mveDave Kreskowiak17-Feb-06 5:25 
GeneralRe: C# asp.net Pin
benjymous17-Feb-06 5:39
benjymous17-Feb-06 5:39 
GeneralRe: C# asp.net Pin
Dave Kreskowiak17-Feb-06 10:18
mveDave Kreskowiak17-Feb-06 10:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.