Is there some style to add to a control ( eg. a button) to make it invisible but still active and clickable?
what can I add to bStyle below to make the button invisible ?
what can I add to bStyle below to make the button invisible ?
Code:
LOCAL bStyle AS DWORD bStyle = %WS_CHILD OR %WS_VISIBLE OR %WS_TABSTOP OR %BS_OWNERDRAW CONTROL ADD BUTTON, hDlg, %ID_Btn2, "Confirm", 10, 195, 50, 16, bStyle
Comment