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

Search:

Type: Posts; User: Symbiotic

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    791

    Re: Display a TIF

    Thanks Igor,

    I have looked at the CPicture class but it dose not support TIF files. I know the authors introduction says he dose, but no he dose not.

    Paintlib is an enormous overhead just to...
  2. Replies
    3
    Views
    791

    Display a TIF

    How do I display a TIF in a control
  3. Replies
    19
    Views
    3,017

    BMP to TIF and visa versa

    How can I convert a BMP to a TIF and visra versa
  4. Replies
    2
    Views
    2,345

    TIFF image and MFC

    Where can I find some simple source code to read/write/display a TIFF image without the overhead of using the likes of pianlib ect.
  5. Re: typelib not updated when new method added - how to force ?

    OH and very important.

    Do not mess around with the Windows registry on a COM DLL. If you get it wrong you will have to go and create new UUID's in your project to be able to use the same project...
  6. Re: typelib not updated when new method added - how to force ?

    Right click the clean menu option on the VC6 project. Then delete the ".ASP" and the "dlldata.c".

    This should resolve your problem.

    Somehow visual studio gets itself into a twist and the only...
  7. Replies
    5
    Views
    678

    Re: Extracting features from a BMP

    Thanks for the feedback.

    It looks like the only way is to buy the books as they cover the various methods in depth.
  8. Replies
    5
    Views
    678

    Re: Extracting features from a BMP

    Yes I guess my question was rather broad.

    What I have is two finger print bitmaps that I would like to compare the connection points to. This is not generalized graphics but rather a science of...
  9. Replies
    5
    Views
    678

    Extracting features from a BMP

    dose anyone know where I can find information and or code examples of extracting features from a bitmap image.

    Another method would be to use edge detection.
  10. Replies
    1
    Views
    530

    Re: Finally the answer

    I have resolved the left mouse button highlight problem.

    Add the following to the previous code exmaple.

    ON_COMMAND(WM_MOUSEMOVE, OnMouseMove)

    void CMYEdit::OnMouseMove()
    {
    }
  11. Replies
    1
    Views
    530

    Finally the answer

    How to resolve the problem of the blue highlight color on a colored edit box.

    This is thanks to Igor Soukhov.

    Derive a custom CEdit class and place add the following to the message map.
    ...
  12. Replies
    3
    Views
    695

    Re: OnCommand problem

    Thank you for your advice.

    Yes this makes total sense. I have had so many conflicting answers and this one I can relate to.

    Thank you one again.
  13. Replies
    3
    Views
    695

    OnCommand problem

    Why is it that I can not trap EM_SETSEL using the HIWORD(wParam) in OnCommand.
  14. Replies
    3
    Views
    934

    Re: PreTranslateMessage problem

    I have implemented he OnCommand in my code but I can still not trap the EM_SETSET notification.

    I can trap EN_CHANGE.

    Why is this.
  15. Replies
    3
    Views
    934

    Re: PreTranslateMessage problem

    Thank you for your advice.

    I try this right now.
  16. Replies
    3
    Views
    934

    PreTranslateMessage problem

    When I use the PreranslateMessage to trap the EM_SETSEL message of a CEdit control in a dialog it only seems to reveal some of the WM_ messages.

    Why is this.
  17. Replies
    2
    Views
    591

    Re: Who to change system default colors

    Thank you.

    My real problem is to change the highlight color in a CEdit control, but it seems the only way is to change the system color and affect all controls

    NOT GOOD.
  18. Replies
    2
    Views
    591

    Who to change system default colors

    How do you change the system default colors to custom colors.
  19. Who to change highlight colour of edit control

    How do you change the default highligh color in an edit box with a custom color.
  20. Replies
    3
    Views
    979

    Re: CEdit Highlight color change

    Ok I got the idea know.

    Yes in reply to your message.

    Iam using OnCtrlColor() to set the background and text colors but I can not find a way to change the default highlight color.
  21. Replies
    3
    Views
    979

    Re: CEdit Highlight color change

    This is the first time Iam using the discussion board so Iam not sure how the responses will pan out.

    I do not know if you received my previous message.
  22. Replies
    3
    Views
    979

    CEdit Highlight color change

    How can I change the defualt highlight color of a CEdit control in a dialog.
Results 1 to 22 of 22





Click Here to Expand Forum to Full Width

Featured