c# to unmanaged c++ and managed c++

K

kang0kid

I have the following code in C#:
Visio.Shape lifeLineMaster;
Visio.Document aDoc;
Visio.Shape newLifeLine;
lifeLineMaster = VisioStencil.Masters["Lifeline"].Shapes[1];
newLifeLine = aDoc.Pages[1].Drop(lifeLineMaster, 5, 5);

How do I change this to managed and unmanaged c++. I've tried various
things, but continue getting compiler errors.

Thanks
 

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