Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. raddler1

    msxml DOM API and character entities

    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...
  2. raddler1

    ShellExecute(…)

    or even better ShellExecuteEx(...) like SHELLEXECUTEINFO lpExec; HINSTANCE hInst = NULL; lpExec.cbSize = sizeof(SHELLEXECUTEINFO); lpExec.fMask = SEE_MASK_NOCLOSEPROCESS ; lpExec.hwnd = NULL; lpExec.lpVerb = _T("OPEN"); lpExec.lpFile = "..."; lpExec.lpParameters = NULL; csParams.GetLength()...
  3. raddler1

    Identifying the exception value

    check out the GetExceptionCode() function in MSDN
  4. raddler1

    Drag window

    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() ...
  5. raddler1

    Identifying the exception value

    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...
  6. raddler1

    Identifying the exception value

    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...
  7. raddler1

    ssh for win

    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

Part and Inventory Search

Back
Top