Given that you have a Win32 dialog box with static text in an LTEXT
control, how do you make it so that users can easily copy that text to the clipboard?
The traditional solution is to create a borderless read-only edit control (which draws as static text by default). Add it to the tab order by setting the WS_TABSTOP
style.
... More