Search found 476 matches

by Zinn
Fri Nov 23, 2018 3:22 pm
Forum: Resolved (Bugs)
Topic: issue-#192 Kernel.Call does not work with ANYREC-parameters
Replies: 7
Views: 6540

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...
by Zinn
Thu Nov 08, 2018 3:18 pm
Forum: Resolved (Bugs)
Topic: issue-#191 Compiler trap by erroneous program
Replies: 7
Views: 6824

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...
by Zinn
Fri Sep 07, 2018 6:00 am
Forum: Infrastructure
Topic: domain name registration extended
Replies: 4
Views: 6200

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...
by Zinn
Tue Jun 19, 2018 8:01 am
Forum: Discussion
Topic: brainstorming menu customization
Replies: 11
Views: 11996

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
by Zinn
Tue Jun 19, 2018 6:20 am
Forum: Discussion
Topic: brainstorming menu customization
Replies: 11
Views: 11996

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...
by Zinn
Wed Jun 06, 2018 12:03 pm
Forum: Resolved (Features)
Topic: issue-#187 adding a run-time debugger to BlackBox
Replies: 37
Views: 24846

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
by Zinn
Thu Mar 22, 2018 9:31 am
Forum: Discussion
Topic: brainstorming Strings extensions
Replies: 8
Views: 10157

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...
by Zinn
Thu Mar 15, 2018 7:08 am
Forum: Resolved (Bugs)
Topic: issue-#184 HYPERLINK ignored in RTF import
Replies: 6
Views: 7058

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
by Zinn
Mon Mar 12, 2018 10:23 am
Forum: Bugs
Topic: Copy and Paste looses text formatting
Replies: 7
Views: 8359

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.
by Zinn
Mon Mar 12, 2018 7:19 am
Forum: Bugs
Topic: Copy and Paste looses text formatting
Replies: 7
Views: 8359

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...