Tagged Questions
The raise-event tag has no wiki summary.
4
votes
3answers
298 views
How do i raise an event in a usercontrol and catch it in mainpage?
I have a Custom Usercontrol that i built and i need to notify Main Page (or any parent page that this control is in) when a button in the custom Usercontrol is clicked how do i raise an event in the ...
1
vote
2answers
237 views
DragDrop event not raised
This is kind of a stupid question... I'm trying to drag and drop a picturebox onto a panel. I followed some exemples, but it doesn't work. The DragDrop event of the panel is never raised. I searched ...
1
vote
2answers
117 views
Custom Control Events in C#
I'm trying to create a custom control and need to raise an event from it. The idea is to raise an event at the end of the click event (OnAfterClick). I found one or two tutorials on doing this, but ...
1
vote
1answer
1k views
vb.net possible to monitor raise events across applications?
I may have gone crazy... but I am hoping there is a way to do this.
I have a base class that has event handling in it. My console application is running my workflow. Part of that workflow is to raise ...
0
votes
1answer
98 views
RaiseEvent from a UserControl that's placed on a UserControl that's on a Form
I have a Windows Form that contains a custom control container as a UserControl. For the sake of this question, this custom control container is called Dashboard. This container called Dashboard ...
0
votes
2answers
715 views
MySQL create “before insert” trigger failing and raising errors in triggers
I have successfully created an insert before trigger on a table using the innodb engine which "throws" an error by performing an insert on a non-existent table. The problem is that as I try to run the ...
0
votes
2answers
125 views
How do I get the object that called (executed) my vb.net subroutine inside my object?
I'm trying to extend my new WPF Touch Screen Keyboard (DLL) Library, to allow the user to get events from the Touch Screen Object. I'd like to be able to tell the Programmer what Object made the call ...
0
votes
1answer
91 views
How to notify a user (UI) from BLL and get their response?
Using VB 2008 .NET 3.5
I am working on an N-Layer desktop application.
Suppose a method in the BLL runs into an situation where the user needs to be notified and the method needs to wait for the ...