c - Is a StatusBar created in simple mode by default? -


when statusbar first created, example:

hwnd hstatusbar = createwindowex(0, statusclassname, "", ws_child | ws_visible, 0, 0, 0, 0, hwnd, 0, getmodulehandle(null), null); 

is created in simple mode or in multiple-part mode? or maybe not guaranteed , better set mode want after creating it?

status bars created, have done, call createwindowex. when status bar first created has no parts. parts added status bars sending sb_setparts message status bar.

is created in simple mode or in multiple-part mode?

simple mode without parts.

is better set mode want after creating it?

parts can specified after window has been created.


Comments

Popular posts from this blog

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -