Search found 88 matches
- Fri Jul 10, 2020 3:37 pm
- Forum: BlackBox Framework
- Topic: [untagged] magic
- Replies: 2
- Views: 17324
Re: [untagged] magic
[untagged] is P-S-I, implemented without careful document, if you understand this assignment is legal: s:=a; (* s: POINTER TO ARRAY [untagged] OF CHAR; a:ARRAY 32 OF CHAR; *) untagged pointer of array can be assigned by a tagged array, the value of the pointer will be the address of the first elemen...
- Wed Jun 24, 2020 6:57 am
- Forum: BlackBox Framework
- Topic: Theme framework
- Replies: 7
- Views: 298393
Re: Theme framework
thanks, I will try it!adimetrius wrote:https://github.com/adimetrius/TylerSrc
but, the link feedback 404, another link "https://github.com/adimetrius/Tyler" code's files only;
- 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: 53259
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...
- 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: 53259
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...
- Wed Jun 10, 2020 3:35 pm
- Forum: Bug
- Topic: Compiler TRAPs with simple CONST expression
- Replies: 10
- Views: 42236
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...
- Tue Jun 09, 2020 7:02 am
- Forum: BlackBox Framework
- Topic: Theme framework
- Replies: 7
- Views: 298393
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...
- Thu Jun 04, 2020 2:55 pm
- Forum: Bug
- Topic: Compiler TRAPs with simple CONST expression
- Replies: 10
- Views: 42236
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...
- Fri Nov 29, 2019 7:34 am
- Forum: BlackBox Framework
- Topic: Issue with BlackBox v1.6 + OPENBUGS integration on WIN10
- Replies: 5
- Views: 26575
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...
- Tue Nov 26, 2019 7:26 am
- Forum: Bug
- Topic: Crash when using coroutines
- Replies: 11
- Views: 52554
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 ...
- Sun Nov 24, 2019 4:29 pm
- Forum: Bug
- Topic: Crash when using coroutines
- Replies: 11
- Views: 52554
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;
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;