Search:

Type: Posts; User: Sea Monster

Search: Search took 0.00 seconds.

  1. Replies
    24
    Views
    5,995

    neither did 99% of the other replies, including...

    neither did 99% of the other replies, including yours and salem's.

    and since when did "general discussion" have a yardstick?

    edit: and why does there have to be a question that needs to be...
  2. Replies
    24
    Views
    5,995

    so let me get this straight...

    Before posting a question or a thread, one first has to search to see if the topic hasn't been discussed before, right?

    But, you may not reply to any discussions around that topic, because that...
  3. Replies
    24
    Views
    6,839

    i always find the sort of replies in threads like...

    i always find the sort of replies in threads like these highly amusing.

    anyone who claims that another programming language is a "joke" isn't worthy of the title "programmer".
  4. If you search really hard, you might be able to...

    If you search really hard, you might be able to find a copy of Charles Petzold's Programming Windows, 5th Edition somewhere on the net.
  5. Replies
    8
    Views
    1,281

    Perhaps it would be better or at least safer to...

    Perhaps it would be better or at least safer to use


    NameOfFile=new char [MAX_PATH];

    instead because MAX_PATH defines the maximum chars a path can have (260). it's defined in windef.h
  6. Replies
    4
    Views
    1,193

    http://www.scintilla.org/

    http://www.scintilla.org/
  7. Replies
    5
    Views
    2,507

    Actually InvertRect calls BitBlt with those...

    Actually InvertRect calls BitBlt with those arguments anyway so it basically boils down to the same thing. I did however find out what the problem was and how to fix it.

    Because BitBlt doesn't...
  8. Replies
    5
    Views
    2,507

    I think I've found the problem. InvertRect...

    I think I've found the problem. InvertRect doesn't use a Brush to color the rect, so it seems like the output only gets reflected on the monitor. If I use FillRect with an alternating Black and...
  9. Replies
    5
    Views
    2,507

    Drawing on a RichEdit?

    i'm 'drawing' a colored rectangle on a subclassed Richedit control using InvertRect, but everytime the region gets covered by another control it reverts to the background color.

    this is the code...
  10. I'm working on something exactly like this but...

    I'm working on something exactly like this but I'm using a thunk class to redirect the calls to the proper WndProcs.



    #pragma warning(push)
    #pragma warning(disable : 4355)
    #if...
  11. Replies
    7
    Views
    3,936

    I might be mistaken, but I think you can only use...

    I might be mistaken, but I think you can only use EM_SETSEL if you want to place the cursor at a position < 64K on Windows 95/98 machines.
    If you want to scroll through a larger piece of text then...
  12. Replies
    2
    Views
    1,525

    OK, so i decided to try this using a richedit...

    OK, so i decided to try this using a richedit control. i subclassed the control and now i'm trying to implement 'normal' text selection. the following code works, but it flickers quite badly. ...
  13. Replies
    2
    Views
    1,525

    Rectangular text selection?

    aka block selection, vertical selection, column selection etc.

    there are different modes of rectangular text selection. see the attached pic for examples.

    now the question is, how do i...
Results 1 to 13 of 13