Main Menu

Recent posts

#21
PlanetSquires Software / Re: Tiko - beta tests
Last post by hajubu - August 06, 2026, 02:32:16 AM
Hi Paul,

Thanks for beta-Test phase - works fine -and here my remarks

a) Screen display on old Laptop 1366x768 :full sized windows: settings pop-up uses app.80% , Fonts resized to 10

b) Big 27inch  - need only to be resized à gusto : visual acuity : sizing and local position

c) Observing a "crash" ::
   Starting the Tiko out-of-the box , loading a test file and try to compile:
   ==> error ( warning  pop-up --> cannot not find compiler path
          Then it stops like a "crash" without further option for adapting new settings-
         (... logically this might correct, but new user not knowing the background may be scared.)
   
    Background : out-of-the-box  path setting may be (are) not known and may be different from mine .
   Tiko ought to be able to find it's way i.e.  "default path" in the "Toolchains" below  the own path.
 
P.S.     My ideas are  ::
 ::@(b) :: Output windows for Big Screen :: option for display in a "side panel"
 ::@(c) ::  an stop-over on the settings page for that choice.

b.r. (Hajubu) Hans
#22
PlanetSquires Software / Re: Tiko - beta tests
Last post by Paul Squires - August 06, 2026, 12:33:52 AM
No major reports in the 3 days that this beta has been active.
I am taking that as a positive sign.   :)

@José Roca if you have tried this beta then I would be interested to know if the dialog and font sizes are okay on your computer/laptop. This beta's dialogs and fonts are larger than in the most recent released version. I remember that you had trouble with the long height of top menus a version or two ago, so I expect that screen real estate is important for you.
#23
José Roca Software / Re: AfxComplex-&-AfxMath
Last post by hajubu - August 05, 2026, 04:36:08 PM
Thanks - worked - Super !
#24
José Roca Software / Re: AfxComplex-&-AfxMath
Last post by José Roca - August 05, 2026, 03:20:17 PM
Modified AfxComplex.inc and CComplex.inc to remove the duplication.
#25
José Roca Software / Re: AfxComplex-&-AfxMath
Last post by José Roca - August 05, 2026, 11:02:43 AM
Thanks. I will look at it. I have uploaded AfxMath.inc by mistake. It is a work in progress almost finished that I have began to document.
#26
José Roca Software / AfxComplex-&-AfxMath
Last post by hajubu - August 05, 2026, 09:13:07 AM
Hi, Jose

just dowloaded the latest AfxNova (AfxNova-260804_af18ed4) and got and error 4 Duplicate Definition.
It seams that we have in AfxComplex or/and AfxMath duplicates.
 (AfxComplex line 87 & 297 ) //  (AfxMath line 753 another FUNCTION IsInfinity Function )

taking the old AfxComplex runs fine even with AfxMath.inc aside.

May you have a closer look - Thanks

Hajubu

```
#console on
/' simple testcase with Tiko 260731 and also Tiko2-beta (_dev_260804_0324_445bbd84) '/
#include "AfxNova\CComplex.inc"
DIM z AS _complex = (1.2345, -2.3456)
print CAbsSqr(z)
SLEEP(5000)
----
AfxNova-260804_2208_af18ed4  ==> Duplicated definition

new upload AfxComplex.inc . AfxMath.inc
Line:  87 --- error 4: Duplicated definition in 'DECLARE FUNCTION IsInfinity (BYVAL x AS DOUBLE) AS LONG'
Line: 297 --- error 4: Duplicated definition in 'PRIVATE FUNCTION CComplex.IsInfinity (BYVAL x AS DOUBLE) AS LONG'
----
AfxNova-260801_1608_b4ab951 ==> runs without error
old AfxComplex.inc -BUT has had  NO AfxMath.inc - as all before - ,
upload was only DWStrProcs.Inc
```
#27
PlanetSquires Software / Tiko - beta tests
Last post by Paul Squires - August 04, 2026, 11:54:29 AM
Hi everyone,

I know that some of you try the latest Tiko versions via the github "development" branch. I can inform you that the branch now contains the latest most feature complete version. I do not intend to add any more major features, so the work that remains is testing and tweaking the program before the new version is released.

https://github.com/PaulSquires/tiko/tree/development

You just need to "Download ZIP" and extract to your hard drive preferably to a location without spaces in the folder names.

DO NOT INSTALL THIS OVER YOUR EXISTING TIKO INSTALLATION

NOTE: It is a large download because it contains the full Help Centre html files, plus Tiko help html files, plus FBC toolchain. The actual Tiko Editor and DLL's are pretty small in comparison.

It is best if you unzip the program into a folder path that does not contain any spaces.

Please post here any major issues that you find so that I can polish things up before Tiko goes out for general release.

Thanks
#28
PlanetSquires Software / Re: I sincerely hope the new v...
Last post by fbfans - August 03, 2026, 12:44:40 AM
Hi Paul, José Roca,
What José Roca said is exactly what I meant. The issue about UTF-16 BOM is something I mentioned in another post.
What I would like Paul to address is the problem with ANSI encoding where double-byte characters cannot be deleted properly — pressing Backspace only deletes half a character (one byte).
After carefully reading José Roca's analysis, I think it makes a lot of sense. I looked through Tiko's source code and found this:
''  IDENTIFY CHARACTERS to BE USED IN WORDS
        SciMsg( pSci(i), SCI_SETWORDCHARS, 0, cast(LPARAM, @"~_\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") )
        ''  UNICODE (UTF-8 encoding)
        if this.FileEncoding = FILE_ENCODING_ANSI then
            SciMsg( pSci(i), SCI_SETCODEPAGE, 0, 0 )
Here you are directly setting it to 0, 0. According to the Scintilla documentation, SCI_SETCODEPAGE(0) forces the editor into single-byte mode, which I believe is the root cause of the issue where double-byte characters are not correctly recognized and Backspace only deletes half a character.

My thought is: could we use the Windows API to get the correct ANSI code page for English, Chinese, Japanese, Korean, Big5, Shift-JIS, etc., and then set it accordingly? For example:
' Get current Windows system ANSI codepage
' returns 936, 950, 932, etc.
Dim As Long ansiCodePage = GetACP()
''  ANSI encoding
if this.FileEncoding = FILE_ENCODING_ANSI then
    SciMsg( pSci(i), SCI_SETCODEPAGE, ansiCodePage, 0 )
Would this simply solve the problem?
In short, I hope that Tiko, as a modern editor, can perfectly handle double-byte character deletion.
Thank you both for your time and effort!
#29
PlanetSquires Software / Re: Tiko - new Theme Editor fu...
Last post by Paul Squires - August 02, 2026, 08:01:22 PM
Themes have been 100% redesigned. Themes are now MUCH better, easier to understand and use, and to edit via the theme editor. The attached screenshots show the editor.

Tiko will also ship with 14 themes. I have attached a copy of one of them.

Another cool feature, as you move from from theme to theme you see a LIVE preview of your editor and UI, Pretty cool.
#30
PlanetSquires Software / Re: I sincerely hope the new v...
Last post by José Roca - August 02, 2026, 01:31:45 PM
I have removed the reference to SCI_SETDBCS because it no longer exists. Scintilla automatically enables DBCS handling when the document's codepage is a DBCS codepage.

Regarding code page 936, see:
https://en.wikipedia.org/wiki/Code_page_936_(Microsoft_Windows)