Need some problems with character entities again.I am using msxml3 DOM API
Basicly I have to perform 3 steps:
1.Read some text, create and add it to a node
This is a test
2. Add a character entitie to that node
This is a test &en_test;
3. Add some text to that node later in my code.
This is a...
I cant remember the code exactly but on theory:
when your window receives WM_MOUSEMOVE message, then you should check if the left buttons is down (wParam) and if it is then you should calculate coords and send a WM_MOVE message to the window SendMessage() ...
just to add one more thing
If the exception-declaration statement is an ellipsis (...), the catch clause handles any type of exception, including C exceptions as well as system-generated and application-generated exceptions. This includes exceptions such as memory protection, divide-by-zero...
it depends, if you're using your own exception class then simply use something like this:
try
{
if (...)
throw CMyException( error_code );
}
catch( CMyException &e )
{
e.HandleError();
}
basicly exceptions work like this
try
{
if ( something goes wrong )
throw 4;
}
catch( int...
How long do you guys think would it take to implement ssh protocol for windows.I am talking about just encryption and maybe port forwarding ? I am using msvc 6.0
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.