Hi!
I am writing a library in managed C++ for the .NET framework. I have
problems fireing events from a worker thread. The managed event must
be raised from the main thread, but I cannot find any way to pass
control from the worker thread to the main thread.
In the COM programming model the...
more >>
Hi, all,
I have a question that must be very simple to many of you. I am using VB.Net
and I need to print a line below in a file
key="test"
I know in C++ I can write something like cout << "key=\"test\"" << endl; I
try to use the statement like WriteLine( "key=\" test \" " ) and got error.
...
more >>