All aspects of Windows Programming

Source: Internet
Author: User

(1) Controls

  • Scroll bar

 

The npage and NPOs in the scrollinfo structure have a range limit. Windows will automatically correct the limit when the range is exceeded.

0 <= npage <= Nmax-Nmin + 1

0 <= NPOs <= Nmax-(nPage-1)

 

So don't always think that you have set the page size and the position of the scroll bar. The page and position of the scroll bar will certainly be as you have set.

 

  • Edit box

When using edit_setsel, you must set the focus on edit. Otherwise, the selected effect is not displayed.

 

 

 

(2) programming skills

  • Window subclass

It is very good to use the window subclass to change some common behaviors of the control. For example, when you click a button with the mouse, select all the edit boxes and do not add them to the corresponding button message in wm_command. Can you give it a try? The key lies in the mouse clicking. When the left mouse button is released, the wm_command message is sent first, and then wm_setfocus is sent to the button. to select all the edit boxes, the edit box must be focused, however, it is only temporary for wm_command to focus on the editing box, and then the wm_lbuttonup of the button itself sets the focus on itself, so the getting focus of the editing box is only an instant. To solve this problem, we use the window subclass for buttons. Call callwindowproc in wm_lbuttonup, and then transfer the focus to the edit box.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.