Hello. My new dev machine is running XP Pro. In the past all
equipment has only used Windows 2000. I have had a lot of problems
getting my projects up and running on the new machine. The current
one is a permission error.
The project is a VC++ Web Service. It works fine when the service ...
more >>
Is there any C++ .NET best practice for handling the case where a mouse is
held on
a control and the right-button is held down - signifying a rapidly repeating
action
equivalent to clicking the left button a bunch of times?
For example, I have a button that one mouse click increments the va...
more >>
Hi
I have written a program using .Net 2. My program works good but after a
reboot when i run the program the following error occures :
"invalid win32 application" . I must copy the application agian to resolve
the problem .Reinstalling .Net2 dos not resolve my problem . What is wrong?...
more >>
How do I copy the content of a string in one encoding (in my case big5) to a
char array of the same encoding?
I try the following
String line[] = S"123æ°´æ³¥";
char buffer[200];
for(int i=0; i<line->get_length(); i++)
{
buffer[i] = (char) line->Chars[i];
}...
more >>