VC++ code insertion into C#

G

GEETHA

hi,
i have been working on drop down menus(popup menu on fly) for so long. But i
am not able to do this is C# successfully. i found these can be done in VC++
easily. I am running short of time. Can i add this functionality return in
VC++ to my C# project? If so, how to do this? Since i am working in .NET
environment this must be possible. Please suggest me wat to do.

Thanks,
hema
 
M

Michael Nemtsev

Hello "GEETHA"(e-mail address removed),

You can't use unmanaged code from the c# directly, but there are several
solutions:
One case is to use P/Invoke to call API functions from the C# code.
Another case to use ManagedC++ where you can combine managed and unmanaged
code.
hi,
i have been working on drop down menus(popup menu on fly) for so long.
But i
am not able to do this is C# successfully. i found these can be done
in VC++
easily. I am running short of time. Can i add this functionality
return in
VC++ to my C# project? If so, how to do this? Since i am working in
.NET
environment this must be possible. Please suggest me wat to do.
Thanks,
hema
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top