Search:

Type: Posts; User: anne03

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,505

    i read and tried you code still the scrollbar and...

    i read and tried you code still the scrollbar and the page didnt move, the only difference is you used LOWORD it will just retrieves the low-order word and NULL or 0 is OK...



    what do you mean...
  2. Replies
    2
    Views
    1,505

    SendMessage() doesnt work

    Hi to everyone i just have this one question, if this function



    SendMessage(hwndP, WM_HSCROLL, SB_LINERIGHT, 0);


    doesnt work, what would be the reason?
    and is there an alternative way...
  3. Yes, if you have an idea if there is a function...

    Yes, if you have an idea if there is a function that will tell me if it goes up or down, or left or right.

    ---------
    thanks
  4. I didnt create a window class, i was just using...

    I didnt create a window class, i was just using the existing classes, handles, handles windows (hwnd) that already created such as applications like, IE, Notepad, VS2010, those are the...
  5. hi thank you for reply, i just tried it to my...

    hi thank you for reply, i just tried it to my code, and i have a question:
    who will call to this CALLBACK FUNCTION? I think i need this to register first this CALLBACK.

    cheers!
  6. how to get mouse movement? e.g. (up, down, left, right)

    Hi to everyone,

    I need again your help, this is regarding in getting the movement of the MOUSE in the
    window/screen if it goes up, down, left, right, i can do send message to the window to ...
  7. Replies
    6
    Views
    2,057

    hi there, sorry you are misunderstanding my...

    hi there, sorry you are misunderstanding my question "IS handle A scrollabar?"
    means IS handle A scrollbar, means the handle is the SCROLLBAR itself, that is my question NOT if handle HAS scrollbar,...
  8. Replies
    6
    Views
    2,057

    Hi when i try to add this function: ...

    Hi when i try to add this function:


    MessageBox(hWnd, ClassName, NULL, MB_ICONINFORMATION);


    - using this function it gives the class names:
    MsoCommandBarDock
    MsoCommandBarDock...
  9. Replies
    6
    Views
    2,057

    ==================================================...

    =====================================================
    hi THANK YOU VERY MUCH FOR THE HELP REALLY APPRECIATED,

    Types of Window Classes
    There are three types of window classes:

    1. System...
  10. Replies
    6
    Views
    2,057

    is handle a scrollbar?

    hi to everyone,

    i need your help, i am checking if the handle i retrieved is a scrollbar such as VerticalScrollbar or HorizontalScrollbar, i did the enumeration of the childwindow:

    BOOL...
  11. Replies
    24
    Views
    2,978

    Or try to use UNICODE representation instead of...

    Or try to use UNICODE representation instead of ANSI
    ANSI:
    char string1[5]
    UNICODE:
    char wstring1[5]
    when representing data using UNICODE add L before the string
  12. The reason why your output is like this i =...

    The reason why your output is like this i = nothing, check this one on your code :
    printf("i=\n",i);
    you have to identify what is the data type of i, here its int so make it like this:...
  13. how to detect if there is scroll bar on a window/handle

    hi to everyone,

    this is my first post to this forum, i just need some help on HOW to figure out or detect if there is scroll bar attached to the window i already figured out the handle as stated...
Results 1 to 13 of 13