1. Gimmy Susan
  2. PowerBuilder
  3. Wednesday, 7 February 2018 15:11 PM UTC

 

Hello to all When I'm in the script window the mouse wheel does not scroll.

someone knows why

thank you

GMY

Accepted Answer
Miguel Leeuwe Accepted Answer Pending Moderation
  1. Wednesday, 15 April 2020 06:21 AM UTC
  2. PowerBuilder
  3. # Permalink

Guys and Girls,

I think I found a solution for anyone who wants to be able to scroll with the mouse wheel, while working from home:

Since I don't have the problem, as I'm using no RDP, I logged on to a test pc at my job and from that pc, connected to my own pc at the job, using RDP: efectively, no scrolling works in the script editor window.

Then I found this great little tool: "KatMousehttps://download.cnet.com/KatMouse/3000-18491_4-24138.html?tag=mncol;1 At the top of the page, there's a big green download button which says "Download now".

After installing it, I recommend to say "yes" to show the readme which has all to information (and of course I did not read).

It's very simple: Once installed and having said 'yes' to run it, you'll see a small icon in the system tray. Right click on it and go to settings. Then on the third tab page ("applications") click on the "add" button and browse to whichever version of pb.exe you are using.

 

Hope it solves your problems.

regards

Comment
  1. Miguel Leeuwe
  2. Friday, 13 November 2020 09:44 AM UTC
Hi Olan,

Just checked: Could not reproduce that problem on my PC. Everything works fine.

regards
  1. Helpful
  1. Benjamin Gaesslein
  2. Friday, 12 February 2021 12:53 PM UTC
Sometimes the "Find" window seems to be invisible for me (it still works, though - [ctrl]-[f], type, [enter], and it does what it's supposed to, you just can't see the window). Closing PB and reopening it usually solves the problem, though.



To quote the immortal words of standard nerd Roy Trenneman: "Hello, IT, have you tried turning it off and on again?"
  1. Helpful
  1. Miguel Leeuwe
  2. Friday, 12 February 2021 15:33 PM UTC
Yeap, that's happened to me also. Same with funny behavior of autoscript.
  1. Helpful
There are no comments made yet.
Jacky Lui Accepted Answer Pending Moderation
  1. Wednesday, 23 August 2023 09:36 AM UTC
  2. PowerBuilder
  3. # 21

;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

Comment
  1. Miguel Leeuwe
  2. Wednesday, 23 August 2023 18:38 PM UTC
Just curiosity after such a long time has passed.

Where do you put your script?
  1. Helpful
There are no comments made yet.
  • Page :
  • 1
  • 2


There are no replies made for this question yet.
However, you are not allowed to reply to this question.