for loading dll u can use this.. its used in .NET activeQt example
#using <dllname.dll>
http://doc.qt.nokia.com/4.6/activeqt-dotnet.html
here is sample code from the example
Qt Code:
#include <QString> #using <mscorlib.dll> #include <vcclr.h> using namespace System; { return new String((const wchar_t *)qstring.utf16()); } { const wchar_t __pin *chars = PtrToStringChars(string); }To copy to clipboard, switch view to plain text mode
use can also use QLibrary for loading dlls, not sure if it will work for .NET or COM.. give it a try..
Bookmarks