I wanted to remove the scrollbar of the dialogues. Because you can not delete them then I thought of greater width.
But then I did something: hide! How to hide, if Windows does not allow it?
Have you tried oDlg:oVScroll:hide() ?
Regards,
James
I wanted to remove the scrollbar of the dialogues. Because you can not delete them then I thought of greater width.
But then I did something: hide! How to hide, if Windows does not allow it?
Code: Select all | Expand
ACTIVATE dialog oDlg CENTER ;
ON INIT ( oScrDlg:= TScrDlg():New( oDlg, 1, 35, 1, 99 ),;
msginfo("hi !"),;
oDlg:oVScroll:hide(),;
nil)
Code: Select all | Expand
# define IS_POINTER_FLAG_SET_WPARAM (wParam, flag) (((DWORD) HIWORD (wParam) & (flag)) == (flag))
Code: Select all | Expand
# define IS_POINTER_FLAG_SET_WPARAM (wParam, flag) (nand(nHIWORD(wParam,flag)) == (flag))
Antonio Mart. wrote:Hi,
Calling to new Windows 8 virtual keyboard from fwh:Code: Select all | Expand
ShellExecute(, "open", "TabTip.Exe")
Regards
Antonio Mart. wrote:I have a small improvement for DlgEndOnLostFocus (). If anyone needed it, I would publish.