;here is my script to solve the problem(autohotkey)
;when accessing through Remote Desktop the Powerbuilder IDE the mouse wheel does not work,this script can fix this problem.
;Change PB125.EXE to your PB version
#SingleInstance force
CoordMode, ToolTip, Screen
SetDefaultMouseSpeed, 0
SetMouseDelay, -1
lines = 5
Hotkey, ~WheelDown, ScrDn
Hotkey, ~WheelUp, ScrUp
ScrUp:
IfWinActive,ahk_exe PB125.EXE
{
Loop, %lines%
SendMessage, 0x115, 0, 0,wedit1, ahk_exe PB125.EXE
}
Return
ScrDn:
IfWinActive,ahk_exe PB125.EXE
{
Loop, %lines%
SendMessage, 0x115, 1, 0,wedit1, ahk_exe PB125.EXE
}
Return
Just checked: Could not reproduce that problem on my PC. Everything works fine.
regards
To quote the immortal words of standard nerd Roy Trenneman: "Hello, IT, have you tried turning it off and on again?"