1
vote
1answer
26 views

What event occurs immediately after a control is displayed for the first time?

I know there is UserControl.Load, which occurs before the control becomes visible for the first time. And I know there is UserControl.HandleCreated, which occurs when a handle is created for the ...
0
votes
1answer
37 views

Combobox selected Item does not match with its selected

I faced with that issue which appears with spaces after letters finished more than Combobox.SelectedItem's length. Why? How can I fix this issue? Below is showing my issue as visual its a very short ...
0
votes
1answer
54 views

Skip validation with controlbox[X] of winform? [duplicate]

I have a validating event private void EmployeeIDtextBox_Validating(object sender, CancelEventArgs e) { if (EmployeeIDtextBox.Text == "") { MessageBox.Show("Please Enter EmployeeID.", ...
0
votes
2answers
31 views

Suspend .Net Event Listener during Update

I have a UserControl in which I've put a dropdown ComboBox and a DataGridView. The ComboBox is a Filter containing items depending of the data in my DataGridView. The objects in the DataGridView ...
0
votes
1answer
62 views

FormClosing with CloseReason = UserClosing doesn't work expectedly?

I have a main form, in the class of this form, I declare another form. This form lives with the main form until the main form is unloaded. There is a button on the main form, clicking this button will ...
0
votes
1answer
28 views

winforms gridview cell contents changed

I have a gridview which gets populated via DataSet.xsd and table adapters. Which event can I use to determine when the user double clicks a cell and modifies it's values? You would think it is ...
0
votes
2answers
36 views

Use Reactive Extensions to harmonize & simplify Control.Enabled = true/false conditions?

Is it possible, or more precisely how is it possible to use RX.Net to listen to a number and different variety of (WinForms) controls' .TextChanged/.RowsChanged/.SelectionChanged events and whenever ...
0
votes
1answer
43 views

Handling/Designing event usage in C# in a nice way

I'm writing a small text-editor like utility for our in-house staff to use to modify a bunch of company specific files. I want design this in such a way we minimize leaky handlers and would like to ...
1
vote
0answers
43 views

c# Superposed control doesn't fire events

My Windows Forms code has two superposed PictureBoxes: a small X on the top corner of a user-loaded image. I'll call them DelImage and Image, respectively. Like this: http://imgur.com/fsW7R8i The ...
0
votes
2answers
29 views

Is there any case in which the Form's Activated event is not raised?

I don't understand why it could be that, I thought Activated should be raised when the form is shown. In fact my form has TopLevel set to false and it's added to another form. When the main form ...
-1
votes
1answer
62 views

Apply event on combobox in datagridview cell . (DatagridViewColoumnComboBox)

I am developing window apllication in c#. I want to apply "SelectedValuechanged" event on the combo box e , this combobox is inside the datagridview. I am unable to access the each combo-box in ...
0
votes
0answers
49 views

MyBase.Load or Me.Load not firing while the form loads with no traceable error

I have a vb.net windows form that is not firing the form load handler when the form is open. This happen after I manually edit the designer.vb file to add some new fields. I've review a similar ...
0
votes
3answers
30 views

Event action of a specific label from an array of labels c#

I am working with an array of labels and I don't really know how to add a click action to all of them. For example if the user clicks on arrow[i] that arrow should display something. I've also ...
2
votes
2answers
94 views

Temporarily stop form events from either being raised or being handled?

I have a ton on controls on a form, and there is a specific time when I want to stop all of my events from being handled for the time being. Usually I just do something like this if I don't want ...
-1
votes
1answer
52 views

MouseDown event on a custom UserControl located on a FlowLayoutPanel

I'm trying to implement a drag/drop in my application. I need to be able to grab a UserControl (in my case PipelineTask) that I programatically added to a FlowLayoutPanel (which in it's turn is ...
0
votes
0answers
86 views

no itemdatabound/rowdatabound for datagrid in winforms C#

I googled and understood there is no itemdatabound or rowdatabound in winforms. I need to use RowAdded and or CellFormatting... Datagridview - Winforms - C# I have the 2 following situation and I ...
1
vote
2answers
41 views

How to properly listen form events with another form

Stuck in listening event to another form. When I try to close my Form2, nothing happens on Form1. I want to do something in Form1 when Form2 closes. Here is my code for Form1 public partial ...
1
vote
1answer
50 views

Behavior of Combobox.SelectedIndexChanged

Please take a look at the code below. When the application starts the SelectedIndexChanged is called and x is of the type "Example". But when the app runs and you select something different ...
0
votes
1answer
61 views

Redirect open link event to extendedwebbrowser tab

I've got a webbrowser in a c# form and when the user click on a link the page opens in the ie10 browser. All I want is to intercept this event and open the new page in another webbrowser ...
0
votes
3answers
59 views

Adding/Removing events based on context

I am new to C# and WinForms. I have some objects with the right click (context menu) events. However, depending on the context (for example depending on whether the user is in the wizard screen or the ...
-4
votes
2answers
79 views

Issue with LostFocus event of a TextBox

Hey I'm trying to use this function : private void IDCustTextBox_LostFocus(object sender, System.EventArgs e) { if (CustName.Text == "abc") MessageBox.Show("Error"); }
0
votes
4answers
53 views

Events automatically detaching

When I attach a event on a control in my Windows Form I've got the problem that, after a few time, it detaches from it automatically. Let me explain, For example if I've got this line of code: ...
0
votes
2answers
78 views

Two simultaneous Textchanged Events firing in Winforms C#

When I type in the first textbox, it should run a conversion which appears in the second, and when I type in the second, it will appear in the first. However, when I type in the first textchanged ...
2
votes
1answer
76 views

How to get the zoom event of a C# chart

I have a chart (the standard chart that comes with win-forms visual studio) that I've set up zooming on. Every time this chart is zoomed I would like to run a function, however I cannot find an event ...
4
votes
5answers
153 views

How to make Form1 label.text change when checkbox on form2 is checked?

I'm very new to c# and am trying my first experiments with 2 different forms. I'd like to make it so you have a label1 and a button1 on Form1, and a checkbox1 on Form2. the button1 on Form1 opens ...
1
vote
1answer
94 views

Wait until same event has happened for a timespan using Rx

Using Reactive.NET, how can I wait until the same event has happened for n seconds before performing an action? The following sample (C#, WinForms) is doing what I want, but I want a delay (let say 1 ...
0
votes
1answer
110 views

Windows Forms - using public event to subscribe Form to a user control event

I have an issue when it comes working with events and/or delegates. I saw very similar questions but still the real implementation is not clear to me. So please when you answer be more specific so I ...
4
votes
1answer
108 views

Why does OnShow for main form not fire?

I have some stuff in the OnShow event of a main form that fills a few listboxes with a procedure StuffLB. I need these listboxes refilled after any of my other forms have been shown with a call to ...
-1
votes
1answer
165 views

C# WinForms Right Click Context Menu without Selecting item

I have a right click menu on c# winforms and the question is when I right click to get the menu how do I not get it to select the item when I right click? I found a similar question, but it is for ...
1
vote
1answer
86 views

Does the KeyDown KeySuppress cancel KeyUp event?

Let's say I've got this: private void txtAnalogValue_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { //Non-numeric key pressed => ...
-1
votes
1answer
63 views

Should I Use Events?

Hi everyone I need a advice, I'm developing a desktop application (Winform) using C#, I have a Form and I have a separated class named OPC (other file) This is some code of OPC Class OPC Class ...
0
votes
0answers
81 views

Two instances of user control sharing events

I have created 1 dll (which is a c# User Control) that gets loaded by a parent application. if I start 2 instances of that 1 dll, the first instance will respond to the events fired by the second and ...
0
votes
2answers
91 views

Event is firing multiple times but the code should execute only once

I have an event that fires 6 times and I want my pop up appears only once and not 6 times. I tried to use a flag but I can not reset it from the same event. I tried to compare values but didn't work ...
0
votes
1answer
113 views

Drawn shape/line fires on MouseEnter

i have PictureBox, how can I draw a shape/line that fires on MouseEnter event and change color or do more. private void ImgViewer_Paint(object sender, PaintEventArgs e) { var ...
0
votes
5answers
315 views

TextBox Events in C#

I have a TextBox. After leaving the textBox the first character should be a capital Letter. Three Events work as same. They are Leave,Validating and Validated. if (txtLocl.Text.Length > 0) ...
-1
votes
3answers
383 views

C# update form from another form using delegate and event

I keep forgetting how this is done.. I want to update the UI on the main form from Form2 without creating an instance of the form. I remember using a delegate / event and possibly passing in an ...
0
votes
2answers
139 views

No events fire when I populate ComboBox programmatically

To make it as simple as possible: ComboBox1 is bound to an empty list (in Form1 load event handler), and there is an event handler associated with ComboBox1: private void ...
-1
votes
1answer
100 views

Messagebox bug in combobox SelectedIndexChanged

Context : I have got a DataGridView which I want to reload when the value of a combobox changes. If the content of the dgv isn't saved, I want to ask the user if I should save it before reloading the ...
0
votes
1answer
158 views

MouseLeave not fired C# WinForms

I have a user control with 2 buttons, that should only be visible when the mouse is inside the area of the control. I'm showing the buttons like this: private void Node_MouseEnter(object sender, ...
0
votes
3answers
112 views

KeyDown event not firing?

I just fully recoded my project and it was a success. The code became much cleaner than it originally was, around 100 lines shorter and I even got rid of an useless class. However, I encountered one ...
0
votes
2answers
53 views

Call object event from WinForm

I need to raise objects event in WinForm. Need to change control state (in UI) when object property has been changed. How can I raise objects event in UI? EDIT: On form i have 2 drop downs binded to ...
0
votes
3answers
248 views

passing value from another class to textbox in form?

I have a class and a form. the class is intended to do some processes when event is raised and return back the values to the form to display only. I kind of have problem passing values back to form. ...
0
votes
2answers
78 views

Starting and pausing threads?

I need to use threading to pause/resume projectile motion. On the button3_Click event the projectile motion is drawn on-screen: public void button3_Click(object sender, EventArgs e) { //... Lots of ...
0
votes
1answer
96 views

Raising an event when button clicked and subscribing it to eventhandler in another class?

I have a form.cs which contains a button and a texbtox, and also a class which handles the event raised when the button is clicked. basically, when the button is clicked, it should raise an event and ...
0
votes
1answer
47 views

UserControl with panel and buttons

My Windows UserControl has a Panel and 2 Buttons. The UserControl is located inside WindowsFormsHost inside a WPF application. The UserControl receive a video from 3rd party api as a winform control ...
0
votes
1answer
52 views

Public Custom Event on UserControl

I want this: public partial class ucTest : UserControl { ... SomeEvent { MessageBox.Show("Inner Call") } } public partial class frmTest: Form { ... SomeEvent += OuterEventInstance; ... void ...
0
votes
1answer
337 views

how to create dynamic link labels in window form application

On clicking Go button the name given in textbox should be displayed as a link label and this should increment dynamically. Here my code: private void buttongo_Click(object sender, EventArgs e) { ...
0
votes
1answer
106 views

Set User Control's default event

I have a User Control containing a bunch of controls. I want to set the default Event of this User Control to the Click event of one of my buttons. I know for setting default event to one of the ...
0
votes
3answers
64 views

What is the best way to mask an UI Event?

I am working with a DataGridView, and I use the CellValueChanged event. I dont want this event to be triggered when I change a cell value by the code. However, I want it to be triggered when the user ...
0
votes
2answers
73 views

FormClosed event is not firing

private void GameForm_FormClosed(object sender, FormClosedEventArgs e) { infform.Show(); } GameForm has another form, infform. The form won't show when it closes. Something wrong here?

1 2 3 4 5 13