Search found 234 matches

by luowy
Tue Feb 14, 2023 5:05 am
Forum: Dormant (Bugs)
Topic: issue-#130 Some disadvantagies of TextViews Restore
Replies: 12
Views: 24252

Re: issue-#130 Some disadvantagies of TextViews Restore

as Josef points out( https://forum.blackboxframework.org/viewtopic.php?p=4708#p4708 ) the problem appears in TextControllers.MarkSelRange: IF front THEN fw := 0; ff := Ports.fill ELSE fw := f.unit(*dot*); ff := fw END; After this adjustment, it works properly(win10), however, the width of the contou...
by luowy
Thu Oct 21, 2021 4:10 am
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

Zinn wrote:(1)
Linux Mint uses the Alt-Key for moving windows. This should be disabled. Otherwise you can't use the Alt-Key inside Blackbox.
thanks, nailed it!
by luowy
Wed Oct 20, 2021 3:25 am
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

Josef Templ wrote:I cannot reproduce the problem.
I am using Win 10, 64 bit, build 19043.1237 and BlackBox 1.7.2, tested with Server mode on and off.

- Josef
Same as your system:win10 64 bit

Code: Select all

Microsoft Windows [版本 10.0.19043.1237]
But the problem still exists
by luowy
Tue Oct 19, 2021 5:29 pm
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

Helmut,thanks for the test Sorry,I'm not familiar with linux and wine, compared with win-BB, the ALT key in wine-BB has a different behavior; 1, Press ALT and hold it, Win-BB: the right mouse button can no longer open the context menu window; Wine-BB: the right mouse button can open the context menu...
by luowy
Mon Oct 18, 2021 4:30 pm
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

The interesting effect is the service model patch,It makes Services.Action more stable than ever,avoid the influence of mouse movements! e.g. 1, Obx->New Cube,open a new cube window, the cube keeps rolling... 2, Press the left mouse button and keep moving, Check the speed at which the cube rolls The...
by luowy
Sun Oct 17, 2021 8:43 am
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

@luowy: can you please describe the steps needed to produce the problem? 1,pc version Microsoft Windows [VERSION 10.0.19042.1266] 2, open the BB, Write two lines of text in the StdLog window 3, pull attributes (select one line,press ALT and hold,use the left button of mouse drag the selected line t...
by luowy
Sun Oct 17, 2021 2:37 am
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

Re: issue-#211 HostPorts.Input problem

refined fixup, for service mode VAR idle:BOOLEAN; PROCEDURE (rd: Rider) Input* (OUT x, y: INTEGER; OUT modifiers: SET; OUT isDown: BOOLEAN); VAR msg: WinApi.MSG; wnd, mw: WinApi.HANDLE; pt: WinApi.POINT; res: INTEGER; set: SET; BEGIN idle:=TRUE; wnd := rd.port.wnd; mw := WinApi.GetCapture(); (*res :...
by luowy
Sat Oct 16, 2021 1:35 am
Forum: Bugs
Topic: issue-#211 HostPorts.Input problem
Replies: 11
Views: 9033

issue-#211 HostPorts.Input problem

Recently, BB became unstable during Drag&Drop mouse operations, after win10 automatic update, e.g. Alt + Drag to pull attributes, BB will lose respond... This is my fixup to this problem. VAR idle:BOOLEAN; PROCEDURE (rd: Rider) Input* (OUT x, y: INTEGER; OUT modifiers: SET; OUT isDown: BOOLEAN);...
by luowy
Sat Oct 24, 2020 4:01 am
Forum: Bugs
Topic: issue-#209 Compiler trap in Real64 op ADR(x)
Replies: 13
Views: 13502

Re: issue-#209 Compiler trap in Real64 op ADR(x)

I would like to propose to resume the voting on this issue. The proposed fix is simple and looks plausible and I was not able to find a better alternative. - Josef You can refer to my solution:DevCPC486.ConvMove | Int32, Set, Pointer, ProcTyp: IF xform = Char8 THEN CheckRange(y, 0, 255); FreeHi(y) ...
by luowy
Mon Sep 14, 2020 5:54 pm
Forum: Bugs
Topic: issue-#209 Compiler trap in Real64 op ADR(x)
Replies: 13
Views: 13502

Re: issue-#209 Compiler trap in Real64 op ADR(x)

1,though they all in backend, but they are at different level, upper is better than lower. if you can solve it in frontend ,that will be best.
2, i agree with you, no need to intro unsigned type, use the integer type is good enough.

P.S. I will be offline for a few days, don't wait for my reply.