Why is it no finished projects are published?
by
, 25-08-2021 at 09:47 (7944 Views)
it was possible in the past.
But i have to admit: never using the UI-module. Even UI provides thousands of functions i catch myself browsing the web for hours to find solutions for most simple tasks instead of writing the code to finish any UI-project.
Simple tasks that are not available as functions of controls and dialogs but as sending messages to them.
Essential methods to use controls to their intended purposes:
As placing the caret to a certain position within the text of a textbox to use a textbox for editing text
or
visibly selecting portions of the contained text,
finding line or column where the caret is currently
all works using wm_messages or wm_notifications and i find plenty of sources in languages as perl or delphi on the web how to achieve it - because these languages seem not to have dedicated functions to achieve what i want to but use the
win32 api methods to send messages or to notify controls about something.
I never find working solutions in .net-languages since these provide own dedicated methods. Sometimes - but rarely - a python- or pascal-snippet offers the holy gral in a cryptic way where i need a fortune-teller for translation while AutoIt and AutoHotkey are easier to decode but mostly seem to have parts of the solution already wrapped to some included headers which requires to examine and study these.
In the end i write 15 minutes what is supposed to become my thinBasic-project and study other languages until the sun raised again and i am too tired to continue coding nor can i remember what i read and where it was when i get up again.
So i start a new script that shall provide the function that is required for the project. Writing the function i stumble across the next hurdle that appears as a missing essential function to process A MOST SIMPLE TASK which is not available as a thinBasic-function and i start searching the web how to solve...