VC++ code insertion into C#

  • Thread starter Thread starter GEETHA
  • Start date Start date
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
 
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
 
Back
Top