Search found 87 matches

by luowy
Wed Jun 24, 2020 6:57 am
Forum: BlackBox Framework
Topic: Theme framework
Replies: 3
Views: 9493

Re: Theme framework

thanks, I will try it!
but, the link feedback 404, another link "https://github.com/adimetrius/Tyler" code's files only;
by luowy
Fri Jun 12, 2020 1:27 am
Forum: Common questions
Topic: How to move a BlackBox document view to the second monitor?
Replies: 16
Views: 24434

Re: How to move a BlackBox document view to the second monit

1, yes, it has changed parent, being a sibling window of BB, out of control of the BB' menus, but the shotcuts can work。 In order to use the BB menu, can press F2, duplicate a sub window to edit, it's a normal MDI window, synchronized with the popup; 2, remove the style WS_CHILD, the proc has been u...
by luowy
Thu Jun 11, 2020 5:10 pm
Forum: Common questions
Topic: How to move a BlackBox document view to the second monitor?
Replies: 16
Views: 24434

Re: How to move a BlackBox document view to the second monit

@Robert I modified it, You can give it a try; PROCEDURE DecoupleChildWindow* ; (* Decouples the currently focussed child window from the Hostwindows.main, such that it can float freely over the desktop *) VAR win: HostWindows.Window; style: SET; res: INTEGER; BEGIN win := HostWindows.dir.Focus(Contr...
by luowy
Wed Jun 10, 2020 3:35 pm
Forum: Bug
Topic: Compiler TRAPs with simple CONST expression
Replies: 10
Views: 18620

Re: Compiler TRAPs with simple CONST expression

Does this agree with the Language Report, or is it another compiler bug? The error is caused by the first parameter, it's a FALSE const , ASSERT(FALSE);(*error*) the Report does not treat this as an error, but compiler does, and it accept TRUE const: ASSERT(TRUE); (*ok;*) after optimization,no code...
by luowy
Tue Jun 09, 2020 7:02 am
Forum: BlackBox Framework
Topic: Theme framework
Replies: 3
Views: 9493

Theme framework

a lot of editors and IDE have theme framwork, e.g. VS code, the dark mode is beautiful and comfortable for eyes; I have customed a dark mode for my BB, I am very satisfied with its feeling, but the code is hardcode,inconveniently when I want to switch back; so I need a theme framework, but the VS co...
by luowy
Thu Jun 04, 2020 2:55 pm
Forum: Bug
Topic: Compiler TRAPs with simple CONST expression
Replies: 10
Views: 18620

Re: Compiler TRAPs with simple CONST expression

DevCPC486.LoadCond PROCEDURE LoadCond* (VAR x, y: DevCPL486.Item; F, T: DevCPL486.Label; hint, stop: SET); VAR end, T1: DevCPL486.Label; c, r: DevCPL486.Item; BEGIN IF mem IN stop THEN GetReg(x, Bool, hint, stop) END; IF (F = DevCPL486.NewLbl) & (T = DevCPL486.NewLbl) THEN (* no label used *) IF...
by luowy
Fri Nov 29, 2019 7:34 am
Forum: BlackBox Framework
Topic: Issue with BlackBox v1.6 + OPENBUGS integration on WIN10
Replies: 5
Views: 14186

Re: Issue with BlackBox v1.6 + OPENBUGS integration on WIN10

However, if that doesn't fall through, how does one go about recompiling modules? I have checked the problem, there is no "Kernel" source File in Openbugs setup directory, so your have to recompile the openbugs source under the BB1.6! the step: 1, select all files&directories under Op...
by luowy
Tue Nov 26, 2019 7:26 am
Forum: Bug
Topic: Crash when using coroutines
Replies: 11
Views: 27514

Re: Crash when using coroutines

this is intended behavior. Each coroutine crash because getting size of closed view crashes. Each coroutine has separate exception handling. yes ,it is! thanks your reply;it's a pity the maximum number of coroutines is limited to about 150; I know the stack size is limited to 2M,why can golang run ...
by luowy
Sun Nov 24, 2019 4:29 pm
Forum: Bug
Topic: Crash when using coroutines
Replies: 11
Views: 27514

Re: Crash when using coroutines

unfortunately, it traps out many window when close the opened View ;

the step of test:
1, click TestA.Open
2, click TestA.Run ;
3, close the view (dont click TestA.Clear!)
the view can't close normally when action running;
by luowy
Fri Nov 08, 2019 8:37 am
Forum: Bug
Topic: Unimplemented feature in SYSTEM.VAL
Replies: 1
Views: 8732

Re: Unimplemented feature in SYSTEM.VAL

Code: Select all

MODULE Test; 
	IMPORT SYSTEM;
	IMPORT Log:=StdLog;
	
	PROCEDURE Do*();
		VAR r: REAL;
	BEGIN
		(*r := SYSTEM.VAL(REAL, 7FEFFFFFFFFFFFFFL); *) (*no support*)
		r := 7FEFFFFFFFFFFFFFR; 
		Log.Real(r);Log.Ln;
	END Do;
	
END Test.