Wilson WindowWare Tech Support

WinBatch WinBatch+Compiler WebBatch
Home | Tech Database | Tech BBS | White Papers | Purchase


How to Scroll Dialogs

Keywords: 	   scroll windows scroll dialogs

Question:

I have a question about this, i want with winbatch to scroll a window of any aplication. What the best solution (function or extender) to be set the position for scroll that. thx

Answer:

A user provided the following sample code:
----------------------------------------
code
----------------------------------------
winhand= DllHwnd("-Symantec Ghost Multicast Server")
hhh= cWndByClass(winhand,"#32770")
If winhand != 0 Then 
for i = 0 to 100
xSendMessage(hhh, xHex(114), 1, 0) 
next

for i = 0 to 100
xSendMessage(hhh, xHex(115), 1, 0) 
next
endif
-------------------------------------------- 


Article ID:   W14871