Search found 476 matches
- Fri Nov 23, 2018 3:22 pm
- Forum: Resolved (Bugs)
- Topic: issue-#192 Kernel.Call does not work with ANYREC-parameters
- Replies: 7
- Views: 14685
issue-#192 Kernel.Call does not work with ANYREC-parameters
Kernel.Call does not work with ANYREC-parameters Reported by Eugene Temirgaleev The following sample program produce a TRAP 0, because the stack does not pass the actual ANYREC parameter. MODULE PrivTest; IMPORT Meta, Services, Log, Files; PROCEDURE LogTypeName* (IN rec: ANYREC); VAR name: ARRAY 256...
- Thu Nov 08, 2018 3:18 pm
- Forum: Resolved (Bugs)
- Topic: issue-#191 Compiler trap by erroneous program
- Replies: 7
- Views: 15052
issue-#191 Compiler trap by erroneous program
The compiler produce a NIL dereference (read) trap instead of an error message MODULE TestCompilerError; CONST length = 5; PROCEDURE Name* (): POINTER TO ARRAY OF CHAR; VAR string: POINTER TO ARRAY OF CHAR; BEGIN NEW(string, LEN length + 1); RETURN string END Name; END TestCompilerError. Reported by...
- Fri Sep 07, 2018 6:00 am
- Forum: Infrastructure
- Topic: domain name registration extended
- Replies: 4
- Views: 14441
Re: domain name registration extended
My PC was completely dead, BOTH hard drives failed within a few days. I replaced one with a solid state drive, which is a big improvement. I have no Windows 10 media, so had to install 7 first. That insisted on 300+ software updates before I could run the one command "Download a Windows 10 ins...
- Tue Jun 19, 2018 8:01 am
- Forum: Discussion
- Topic: brainstorming menu customization
- Replies: 11
- Views: 25664
Re: brainstorming menu customization
Josef,
your idea is perfect.
- No new keyword.
- Defining the position with an existing entry and insert it behind.
- When the entry is not found, we are at the end of the list. That is the correct default position for insert it.
Helmut
your idea is perfect.
- No new keyword.
- Defining the position with an existing entry and insert it behind.
- When the entry is not found, we are at the end of the list. That is the correct default position for insert it.
Helmut
- Tue Jun 19, 2018 6:20 am
- Forum: Discussion
- Topic: brainstorming menu customization
- Replies: 11
- Views: 25664
Re: brainstorming menu customization
I propose to add one new keyword: APPENDMENU "#Dev:&Dev" SEPARATOR "#Srcnav:New option" "F8", "SrcnavModule.Command" "SrcnavModule.Guard" END It appends the menu to the existing menu. Without APPEND it replace the existing menu as it is doing now...
- Wed Jun 06, 2018 12:03 pm
- Forum: Resolved (Features)
- Topic: issue-#187 adding a run-time debugger to BlackBox
- Replies: 37
- Views: 52541
Re: issue-#187 adding a run-time debugger to BlackBox
Just a short note: in the menu the "#Dev:..." is missing at "#Dev:&Debug Command" and at "#Dev:&Debug Module"
- Helmut
- Helmut
- Thu Mar 22, 2018 9:31 am
- Forum: Discussion
- Topic: brainstorming Strings extensions
- Replies: 8
- Views: 20505
Re: brainstorming Strings extensions
We have already done some extension: PROCEDURE IsAlpha (ch: CHAR): BOOLEAN; PROCEDURE IsAlphaNumeric (ch: CHAR): BOOLEAN; PROCEDURE IsIdent (ch: CHAR): BOOLEAN; PROCEDURE IsIdentStart (ch: CHAR): BOOLEAN; PROCEDURE IsLower (ch: CHAR): BOOLEAN; PROCEDURE IsNumeric (ch: CHAR): BOOLEAN; PROCEDURE IsUpp...
- Thu Mar 15, 2018 7:08 am
- Forum: Resolved (Bugs)
- Topic: issue-#184 HYPERLINK ignored in RTF import
- Replies: 6
- Views: 15162
Re: issue-#184 HYPERLINK ignored in RTF import
Josef,
perfect solution. You kill two birds with one stone.
About my problem with html (cut & paste from browser to BlackBox): Is there also a simple solution that the hyperlink is copied too? Other formatting I currently don't care.
- Helmut
perfect solution. You kill two birds with one stone.
About my problem with html (cut & paste from browser to BlackBox): Is there also a simple solution that the hyperlink is copied too? Other formatting I currently don't care.
- Helmut
- Mon Mar 12, 2018 10:23 am
- Forum: Bugs
- Topic: Copy and Paste looses text formatting
- Replies: 7
- Views: 18655
Re: Copy and Paste looses text formatting
Bernhard, yes this can be another solution for my problem.
Saving the website as html and load them to BlackBox.
Currently I think about different kind of cut & paste (plain text & text including formatting)
However the correction above should be done. It doesn't matter which way we go.
Saving the website as html and load them to BlackBox.
Currently I think about different kind of cut & paste (plain text & text including formatting)
However the correction above should be done. It doesn't matter which way we go.
- Mon Mar 12, 2018 7:19 am
- Forum: Bugs
- Topic: Copy and Paste looses text formatting
- Replies: 7
- Views: 18655
Re: Copy and Paste looses text formatting
During my test with Rem and Copy & Paste I found an error inside HostTextConv Copy from Firefox via Libre Writer works OK Copy from Firefox via Office Word looses the hyperlink address. Solution: Add in HostTextConv (or in Strings ???) PROCEDURE LeftTrim (VAR str: ARRAY OF CHAR); (* strip leadin...