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

Search:

Type: Posts; User: nitinmalapalli

Search: Search took 0.03 seconds.

  1. Re: CRect.PtInRect(point) problem on scrolling.

    I could do that. But wouldn't it be a problem when I run the app on a computer with different monitor specifications having different resolutions? Dabbling with pixels can cause such errors, right?
  2. Re: CRect.PtInRect(point) problem on scrolling.

    I had hoped that perhaps this was a standard problem.
  3. Re: CRect.PtInRect(point) problem on scrolling.

    I have been trying precisely that. Any suggestions as to how I can do that? What sort of adjustment would I have to do? I have tried many combinations but none of them work.
  4. Re: CRect.PtInRect(point) problem on scrolling.

    This is how I create the CEdit control:



    void CMainChildWnd :: OnLButtonDown(UINT nFlags, CPoint point)
    {
    GetClientRect(&cRectChildWnd);
    if(cNewEntry.crEditorAdd.PtInRect(point))
    { ...
  5. CRect.PtInRect(point) problem on scrolling.

    Hello all,

    I am developing this little app in which there's a table and the user may scroll sideways to view the full table and choose to make an entry in any of the cells by clicking on the...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured