CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: user008

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    8,423

    Re: How can I use proxy in OpenSSL?

    Here is my connection code


    int openConnection(const char *hostName, int port)
    {
    struct hostent *host;
    struct sockaddr_in addr;

    if ((host = gethostbyname(hostName)) == nullptr)...
  2. Replies
    3
    Views
    8,423

    How can I use proxy in OpenSSL?

    How can I add ability for OpenSSL client to connect to OpenSSL server via proxy?
  3. Replies
    3
    Views
    6,851

    Re: WTL. CEdit derived class. EN_CHANGE

    class CMyEdit : public CWindowImpl<CMyEdit, CEdit>
    {
    public:
    BEGIN_MSG_MAP(CMyEdit)
    END_MSG_MAP()
    };


    I think thees are the general parts of the code.
    If I use CEdit parent window...
  4. Replies
    3
    Views
    6,851

    WTL. CEdit derived class. EN_CHANGE

    Parent window has


    COMMAND_HANDLER_EX(0, EN_CHANGE, OnEdit)


    It works when I am using CEdit
    But it does not work when I am using CMyEdit.
  5. Replies
    2
    Views
    5,959

    Re: WTL. Handle splitter position changing

    There is seems like doesn't.
  6. Replies
    2
    Views
    5,959

    WTL. Handle splitter position changing

    How can I handle splitter position changing?
  7. Re: MFC. CListBox. SetScrollPos does not work after ResetContent

    Thanks!
  8. MFC. CListBox. SetScrollPos does not work after ResetContent

    int nPos = ListBox.GetScrollPos(SB_VERT);
    ListBox.ResetContent();
    // Fill content
    // ....
    ListBox.SetScrollPos(SB_VERT, nPos);

    ScrollBar rectangle looks good but content showed...
  9. std::thread. How to check whether std::thread ended?

    How to check whether std::thread ended?
  10. Replies
    1
    Views
    2,781

    Is windows splitter

    How can I check is window under cursor splitter?
  11. Replies
    0
    Views
    1,190

    WTL. MouseWheel to child under cursor

    How to make that MouseWheel gets child under cursor instead of focused child?
  12. Replies
    0
    Views
    5,182

    WTL. CListViewCtrl. NOTIFY_CODE_HANDLER

    I try to use inherited from CListViewCtrl class. http://www.codeproject.com/Articles/1737/Lazy-Grid-WTL-implementation
    OnBeginEdit does not call. What did I do wrong?...
  13. Replies
    1
    Views
    1,582

    WTL. CTreeViewCtrl text

    Some parts of CTreeViewCtrl item text swap.
    For example I assign "[1](1)" and I see (1)[1].
  14. Replies
    3
    Views
    2,139

    Re: WTL. MDI. Get main frame.

    I need WTL function. I think AfxGetMainWnd is MFC function.
  15. Replies
    3
    Views
    2,139

    WTL. MDI. Get main frame.

    How to get main frame?
  16. Replies
    5
    Views
    1,993

    Re: WTL. MDI - close file

    Up
  17. Replies
    5
    Views
    1,993

    Re: WTL. MDI - close file

    Why not?

    class CMainFrame: ...
    {
    ...
    LPRESULT OnFileClose(WORD, WORD, HWND, BOOL&)
    {
    ...
    }
    ...
  18. Replies
    5
    Views
    1,993

    Re: WTL. MDI - close file

    I need to get method call when file close event happens. Currently breakpoint does not work in this method.
  19. Replies
    5
    Views
    1,993

    WTL. MDI - close file

    I added code in MainFrm for file closing like existing code for new file. But it does not work. What did I do wrong?

    COMMAND_ID_HANDLER(ID_FILE_CLOSE, OnFileClose)

    LPRESULT OnFileClose(WORD,...
  20. Thread: WTL splitter

    by user008
    Replies
    2
    Views
    1,218

    Re: WTL splitter

    Thanks
  21. Thread: WTL splitter

    by user008
    Replies
    2
    Views
    1,218

    WTL splitter

    I want to separate window by vertical splitter and separate left half of result by horizontal splitter. What did i do wrong?


    m_wndVertSplit.Create ( *this, rcDefault, NULL, 0, WS_EX_CLIENTEDGE...
  22. Replies
    1
    Views
    3,154

    Divide for rectangles. Minimize rectangles.

    There is the picture with cut rectangles.
    I need to divide the picture for rectangles. Count of rectangles must be minimum.
  23. Replies
    1
    Views
    4,652

    Spring mvc + Bootstrap

    How can I use Bootstrap in Spring mvc?
  24. Replies
    0
    Views
    880

    EnvDTE. Save document event

    How to make reaction for document saving event.
  25. Replies
    9
    Views
    2,186

    Re: Parse C++ function

    There would be preferably that result would be returned (success or fail) and incorrect code would be broken pretty quick. It is not difficult problem but if there is complete solution I would use it.
Results 1 to 25 of 69
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured