B Bob Powell [MVP] Mar 14, 2004 #2 The C# portions of the code will be in an assembly that you can call from the C++ code. -- Bob Powell [MVP] Visual C#, System.Drawing Check out February's edition of Well Formed. Non-client drawing, Graphics Transform stack and Flood-Filling http://www.bobpowell.net/currentissue.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/gdiplus_faq.htm Read my Blog at http://bobpowelldotnet.blogspot.com
The C# portions of the code will be in an assembly that you can call from the C++ code. -- Bob Powell [MVP] Visual C#, System.Drawing Check out February's edition of Well Formed. Non-client drawing, Graphics Transform stack and Flood-Filling http://www.bobpowell.net/currentissue.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/gdiplus_faq.htm Read my Blog at http://bobpowelldotnet.blogspot.com
W Willy Denoyette [MVP] Mar 14, 2004 #3 Add this to your cpp or header files(s) #using <yourCsharpAssemblyPFilePath>; using namespace someNamespace; //for convenience .... Willy.
Add this to your cpp or header files(s) #using <yourCsharpAssemblyPFilePath>; using namespace someNamespace; //for convenience .... Willy.
S Sam Gentile [MVP - C#/.NET] Mar 28, 2004 #4 This all assumes that you are working with Managed C++ and not traditional C++ so you will also need to compile with /clr. -- ----- Sam Gentile Microsoft MVP - C#/.NET ..NET Blog http://samgentile.com/blog/ Please do NOT contact me directly but respond to the newsgroup instead.
This all assumes that you are working with Managed C++ and not traditional C++ so you will also need to compile with /clr. -- ----- Sam Gentile Microsoft MVP - C#/.NET ..NET Blog http://samgentile.com/blog/ Please do NOT contact me directly but respond to the newsgroup instead.