Main Menu

Recent posts

#91
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by José Roca - July 24, 2026, 01:06:56 PM
I hope that the new version of Tiko will manage fine the conversions when you have a file in ansi and you change it yo utf-8, or viceversa. The version that I'm using almost destroyed one of my big source files.
#92
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by José Roca - July 24, 2026, 01:01:01 PM
Change also the name of conflicting files like CButton.inc or you will overwrite mine.
#93
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 24, 2026, 12:54:34 PM
All done.
A process that probably would have taken the better part of a day. :-)
#94
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 24, 2026, 12:43:36 PM
Quote from: José Roca on July 24, 2026, 11:41:02 AMThese are the names of my static classes:
....

A calendar / date picking custom control is something that I definitely need for my other big programming project (my private options trading tracking software). I'll create that one soon.
 
#95
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 24, 2026, 12:40:00 PM
Thanks José,

I've changed all of mine to use the "Ps" prefix. Whether that stands for "PlanetSquires" or the more vain "PaulSquires", I'll leave that to the reader.  :-)

I have two AI agents. "Emma" is my Opus 4.8 model agent and she's the one implementing this huge rename refactor, git fixing, etc. "Quinn" is her older sister that uses the strongest Fable 5 model. That model is way too much for a task like this. It's amazing how they interview you, create design and implementation documents, and execute the plan sequentially, progressing only if all tests pass. The level of automation is incredible and definitely liberating having been freed from all of the less glamourous boring repetitive work. Their level of awareness and knowledge of programming and the insane speed at which they understand a somewhat obscure language like FreeBasic is both amazing and scary at the same time.

The changes are almost complete. I'll post again when they're ready.
#96
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by José Roca - July 24, 2026, 11:41:02 AM
These are the names of my static classes:

CAnimate
CButton
CCombo
CDtPicker
CEdit
CHeader
CHotKey
CIPAddress
CListBox
CListView
CMonthCal
CPager
CProgBar
CPropSheet
CRebar
CRichEdit
CScrollBar
CStatic
CStatusBar
CSysLink
CTab
CToolBar
CToolTip
CTrackBar
CTreeView
CUpDown

#97
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 24, 2026, 11:15:40 AM
Quote from: José Roca on July 24, 2026, 08:40:46 AMI can't. You have used the same names that I use for my static classes:  CButton, CListBox, CStatusBar, CComboBox.
Lol, I must have had them in my subconscience as they were being developed. I just finished CCheckBox, so I'll regenerate them all under a new name.

Before I do that, I've attached a screenshot of the checkbox control.

I'll post back again once the naming refactor is complete.
#98
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by José Roca - July 24, 2026, 08:40:46 AM
I can't. You have used the same names that I use for my static classes:  CButton, CListBox, CStatusBar, CComboBox.
#99
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 24, 2026, 08:07:28 AM
All of the Custom Controls that you see in the documentation are now live.

The Github repositories are now public.

https://github.com/PaulSquires?tab=repositories

Please understand that these controls are fully tested and they are in the process of being integrated into the Tiko Editor itself as part of the UI. I will most likely find bugs or change control behaviours as that integration progresses.

Feel free to use the controls and play with them. Just realize that I can not provide any degree of active support for them just yet.
#100
PlanetSquires Software / Re: AfxNova / FreeBasic / Plan...
Last post by Paul Squires - July 23, 2026, 09:08:08 PM
Thanks José, I really appreciate your kind words.

I can't how many times over the years that I've drawn inspiration from your work. I continue to be amazed at the tools that you've produced. I can only hope to help augment your work a bit wherever I can.

I know that my programming journey over the years would have been a LOT harder if it wasn't for the knowledge that you've patiently shared.

I have a lot of work left to go with Tiko but now that everything is broken out into logical custom control building block, it will make longer term code maintenance and iterative improvements much easier.

The next Tiko will be (hopefully) an exponential improvement over the current version. It is already setup so that code is automatically parsed as you type (via a background monitoring thread)....... and the BEST part is that your code is fed into the FreeBasic compiler itself to generate the list of symbols, functions, subs, types, enums, etc. I modified the compiler to be able accept both files and/or regular utf-8 strings and generate a map that I can read directly from inside Tiko. It utilizes FB's lexer and parser directly. You can't get much better parsing of FB code than that. :-)

Best of all - I'm having fun programming again.