Home > Software engineering >  MFC to achieve below table format output control should use
MFC to achieve below table format output control should use

Time:10-15

I want to ask, how to realize the output result of below part, I started using the ListBox, but not on the menu bar above, what is "student id, name, departments, such as" so disorganized, so I want to realize the interface as above, thank you!!!!!
This is my

CodePudding user response:

with ListCtrl controls, the report style

CodePudding user response:

CListCtrl (Report)

CodePudding user response:

CLISTCTRL

CodePudding user response:

CListCtrl (Report style)
LONG lStyle=GetWindowLong (m_list m_hWnd, GWL_STYLE);//get the current window style
LStyle |=LVS_REPORT;//set style
SetWindowLong (m_list m_hWnd, GWL_STYLE lStyle);//set the style
  • Related