Am 14.09.15 20.11, schrieb Andi B.:
Hi,
how to get the current scroll position from a container?
I can get the current selected object with -
psrec = WinSendDlgItemMsg( hwnd, ulCnrId,
CM_QUERYRECORDEMPHASIS,
MPFROMLONG( CMA_FIRST),
MPFROMLONG( CRA_SELECTED));
but how can I query the scroll position (and set it again afterwards
when I filled it with refreshed objects)?
Thanks, Andi
The container control has a bunch of atomic children like the 2
scrollbars for horizontal and vertical scroll.
I think you will have to manipulate these:
hwndCnr = WinWindowFromID(hwnd,ulCnrId);
// the CID_ constants are the ids of all the children controls
hwndVertScroll = WinWindowFromID(hwndCnr,CID_VSCROLL);
// save old vertical scroll position
SHORT oldYPos = SHORT1FROMMR(WinSendWindowMsg(hwndVertScroll,SBM_QUERYPOS,MPVOID,MPVOID));
... do you stuff ...
// restore old vertical scroll position WinSendWindowMsg(hwndVertScroll,SBM_SETPOS,MPFROMSHORT(oldYPos),MPVOID);
I hope that that'll do.
Lars
Am 14.09.15 20.11, schrieb Andi B.:
Hi,
how to get the current scroll position from a container?
I can get the current selected object with -
psrec = WinSendDlgItemMsg( hwnd, ulCnrId,
CM_QUERYRECORDEMPHASIS,
MPFROMLONG( CMA_FIRST),
MPFROMLONG( CRA_SELECTED));
but how can I query the scroll position (and set it again afterwards
when I filled it with refreshed objects)?
Thanks, Andi
The container control has a bunch of atomic children like the 2
scrollbars for horizontal and vertical scroll.
I think you will have to manipulate these:
hwndCnr = WinWindowFromID(hwnd,ulCnrId);
// the CID_ constants are the ids of all the children controls
hwndVertScroll = WinWindowFromID(hwndCnr,CID_VSCROLL);
// save old vertical scroll position
SHORT oldYPos = SHORT1FROMMR(WinSendWindowMsg(hwndVertScroll,SBM_QUERYPOS,MPVOID,MPVOID));
... do you stuff ...
// restore old vertical scroll position WinSendWindowMsg(hwndVertScroll,SBM_SETPOS,MPFROMSHORT(oldYPos),MPVOID);
I hope that that'll do.
Lars
Lars Erdmann schrieb:
Am 14.09.15 20.11, schrieb Andi B.:
Hi,
how to get the current scroll position from a container?
I can get the current selected object with -
psrec = WinSendDlgItemMsg( hwnd, ulCnrId,
CM_QUERYRECORDEMPHASIS,
MPFROMLONG( CMA_FIRST),
MPFROMLONG( CRA_SELECTED));
but how can I query the scroll position (and set it again afterwards
when I filled it with refreshed objects)?
Thanks, Andi
Test
Andi B. schrieb:
Lars Erdmann schrieb:
Am 14.09.15 20.11, schrieb Andi B.:
Hi,
how to get the current scroll position from a container?
I can get the current selected object with -
psrec = WinSendDlgItemMsg( hwnd, ulCnrId,
CM_QUERYRECORDEMPHASIS,
MPFROMLONG( CMA_FIRST),
MPFROMLONG( CRA_SELECTED));
but how can I query the scroll position (and set it again afterwards
when I filled it with refreshed objects)?
Thanks, Andi
---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft. https://www.avast.com/antivirus
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 445 |
Nodes: | 16 (0 / 16) |
Uptime: | 114:18:17 |
Calls: | 9,209 |
Calls today: | 8 |
Files: | 13,483 |
Messages: | 6,054,656 |