473,811 Members | 3,479 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

creting event handler client in vc++ for Source c# event

Hello all,

Can any one have the source of How to add event handler in unmanaged MFC
application for
event source which is in Managed(c# class library).

Here is the Event Source code
:
namespace ircConnect

{

public class IrcConnection

{

public delegate void MessageEventHan dler(object sender,MessageE ventArgs e);

public event MessageEventHan dler MessageIncome;

}End Class



Event Client

void CADONET_MFCDlg: :OnFilling() //This is the MFC dialog box event

{

#pragma push_macro("new ")

#undef new

try

{

m_IrcConnection =new IrcConnection() ;

FileWatcherEven ts *f=new FileWatcherEven ts();

m_IrcConnection->add_MessageInc ome=new
IrcConnection:: MessageEventHan dler(m_IrcConne ction,OnMessage Income);

};

im using gcroot template
gcroot<IrcConne ction*m_IrcConn ection;

gcroot<IrcMessa ge*m_IrcMessage ;

void static OnMessageIncome ( Object* sender,
IrcConnection:: MessageEventHan dler* e );

but the compile time error generated as follows

error C3363: 'void CADONET_MFCDlg: :OnMessageIncom e(System::Objec t __gc
*,ircConnect::I rcConnection::M essageEventHand ler __gc *)' : cannot create a
delegate handler for 'ircConnect::Ir cConnection::Me ssageEventHandl er' from a
non-member function or a member of an unmanaged class


Sep 1 '06 #1
1 1539

"Mayur" <ma***@activele ment.comwrote in message
news:un******** ******@TK2MSFTN GP04.phx.gbl...
| Hello all,
|
| Can any one have the source of How to add event handler in unmanaged MFC
| application for
| event source which is in Managed(c# class library).
|
| Here is the Event Source code
| :
| namespace ircConnect
|
| {
|
| public class IrcConnection
|
| {
|
| public delegate void MessageEventHan dler(object sender,MessageE ventArgs
e);
|
| public event MessageEventHan dler MessageIncome;
|
| }End Class
|
|
|
|
|
|
|
| Event Client
|
| void CADONET_MFCDlg: :OnFilling() //This is the MFC dialog box event
|
| {
|
| #pragma push_macro("new ")
|
| #undef new
|
| try
|
| {
|
| m_IrcConnection =new IrcConnection() ;
|
| FileWatcherEven ts *f=new FileWatcherEven ts();
|
| m_IrcConnection->add_MessageInc ome=new
| IrcConnection:: MessageEventHan dler(m_IrcConne ction,OnMessage Income);
|
| };
|
|
|
| im using gcroot template
| gcroot<IrcConne ction*m_IrcConn ection;
|
| gcroot<IrcMessa ge*m_IrcMessage ;
|
|
|
| void static OnMessageIncome ( Object* sender,
| IrcConnection:: MessageEventHan dler* e );
|
| but the compile time error generated as follows
|
| error C3363: 'void CADONET_MFCDlg: :OnMessageIncom e(System::Objec t __gc
| *,ircConnect::I rcConnection::M essageEventHand ler __gc *)' : cannot create
a
| delegate handler for 'ircConnect::Ir cConnection::Me ssageEventHandl er' from
a
| non-member function or a member of an unmanaged class
|
|
|
|

THis is not a C# issue, please post C++ questions to the vc NG
<microsoft.publ ic.dotnet.langu ages.vc, that said, the error message tells
it all, your MessageEventHan dler' delegate must be created from a managed
class.

Willy.
Sep 1 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
7051
by: Andy Read | last post by:
Hello all, I have the requirement to produce source code that produces an object hierarchy. Example: Root | Folder 1
2
2018
by: TogaKangaroo | last post by:
Hi, I'm trying to get intimate with my new copy of the .NET Pro developing environment, specifically C++ Visual Studio. I have a book (VC++ in 21 days) that I am going through following their examples. However the book treats the MS VC++ 6.0 environment and I...as I mentioned am learning .NET. It hasn't been too large a problem so far, I'm have a comp sci degree and have done plenty of c++ so where the two don't match up I've been...
0
1946
by: Arnaud Debaene | last post by:
Hello all. I've got a bunch of existing, non managed, C++ DLLs that export types with, among other things, public events implemented using the boost::signals library. Now, I need to have these DLL interoperate with managed code. Among others things, the managed code need to be able to register for notification with the boost signals. I've tried different approaches (trying to register a pinned delegate with the boost::signal, etc...),
3
2081
by: Ashok Kumar K | last post by:
Hi all, Where can I get some insight on using the __hook, __unhook, event_source and event_receiver for specifically COM events. The documentation given in MSDN is very minimal. I have the following scenario Server (COM event source) is written in VC++ 6.0 using ATL (event interfaces can be either dispinterface / IDispatch based) Client (COM event receiver) is written in VC++ 2003 using attributed programming and unified event handling
0
2962
by: Demetri | last post by:
I have created a web control that can be rendered as either a linkbutton or a button. It is a ConfirmButton control that allows a developer to force a user to confirm if they intended to click it such as when they do a delete. Everything is great. By and large it will be used in my repeater controls using the command event when the user clicks on it and so that event is working great. My issue is the Click event. When the control is...
0
1755
by: Mayur | last post by:
Hello all, Im trying to call my .net c# library functions from my unmanaged vc++(dialog based MFC) application . From that application i want add the event handler for the event generated in c# dll which generates the event calles as Message Income my c# dll code is like this namespace ircConnect
2
3735
by: Mayur | last post by:
Hello all, Can any one have the source of How to add event handler in unmanaged MFC application for event source which is in Managed(c# class library). Here is the Event Source code : namespace ircConnect {
19
4763
by: Daniela Roman | last post by:
Hello, I try to fire an event under a button click event and maybe anybody can give a clue please. I have let's say a WEB grid with PageIndexChanged event: private void DataGrid1_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
2
3932
by: John Kotuby | last post by:
Hi guys, I am converting a rather complicated database driven Web application from classic ASP to ASP.NET 2.0 using VB 2005 as the programming language. The original ASP application works quite well, so at times it is tempting just to port parts of it over mostly as-is. In fact, one MSDN article I read suggested using straight HTML wherever possible to make the app more efficient and less resource demanding. On one page there are 2...
0
9731
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10393
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10405
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10136
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9208
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7671
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6893
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3871
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.