RawText / End RawText will be deprecated in next thinBasic version: https://help.thinbasic.com/index.html?rawtext.htm
Please use multi line double quote strings:...
Type: Posts; User: ErosOlmi
RawText / End RawText will be deprecated in next thinBasic version: https://help.thinbasic.com/index.html?rawtext.htm
Please use multi line double quote strings:...
Yes, as you discovered ... executing a script on the fly without having to save it can be done by right click on its editor Tab.
I will add those hidden but useful commands in main menu and in...
Thanks a ot for reporting
I will try to fix soon.
Updated 1.11.7.0
Let me know if it works.
https://www.thinbasic.com/downloads.html#downloads
Thanks René, will try to fix.
2022.02.27 19:20 CET
Update thinBasic 1.11.7.0
Download from: https://www.thinbasic.com/downloads.html#downloads
Fixed thinAir Codetips handling
Sorry my fault: I didn't' update link connected to the image.
Now should be ok
Next weeks I will concentrate on bug fixing and finishing help topics: there are a lot of new feature still to be documented, sorry :oops:
I will try to update at least once every week in order to...
Thanks, I'm working on Help and will fix an populate missing help in next updates
I should have fixed in new setup
2022.02.27 19:20 CET
Update thinBasic 1.11.7.0
Download from: https://www.thinbasic.com/downloads.html#downloads
Fixed thinAir Codetips handling
Released thinBasic 1.11.7.0
Download...
Yes, put the DLL in the same folder where you have your thinBasic script or your bundled thinBasic exe.
thinBasic will search for dll first in that folder.
You need to declare inside...
Ciao LeftyG
welcome to thinBasic.
Yes you did it almost, only Alias must be outside string of the alias. And data type, docs seem telling that SDL_Init accepts an v and returns an Integer
...
Do not know if it can help but I did many changes in latest Beta I'm working on and not yet published.
Link is: https://www.thinbasic.biz/projects/thinbasic/thinBasic_1.11.7.0.zip
I'm using at...
GPF (General Protection Fault) are that kind of errors trapped by the Windows operating system when a process try to read/write to a memory area not correctly handled.
GPFs can occur for a huge...
Just work!
In the company I work for this year was a great year full of projects and my time was consumed almost for that.
I was always there reading forum posts and killing spam messages but no...
Thanks gui. A great year to you too.
A new thinBasic version is on the way with a lot of new features and fix in few weeks.
Hope to exit from beta phase (too long) and release a stable version
I post an example with some comments hoping it can help you a bit
Pointers in thinBasic can be done in many ways and maybe I can improve it again.
uses "console"
Type TMyUdt
ALong ...
Try to change
Dim bc As String= "Button"
to
Dim bc As String= UTF8ToWideChar$("button")
And use StrPtr (not VarPtr) to return the pointer to the first byte of a dynamic string
Ciao,
just to let you know I'm following this thread testing what you are trying to do and see if there are problems from thinBasic side.
I can confirm there is something I need to fix and...
Hi Brian,
I'm not sure error occurs due to OS_GetComputerName function.
Maybe parser is not able to exactly determine the precise line/byte where error occurs.
Or maybe some char of the computer...
I think I've finished moving from old provider to new provider.
We moved from a dedicated physical server located in Italy to a shared hosted plan in California
Italian server was a 2003 Windows...
Dear all,
this web site is now hosted into a new hosting provider.
I should have fixed all aspects but if you find something not working, please post the details here and I will try to fix.
...
Even if thinBasic is an interpreted languages we have added many native supported data types: https://www.thinbasic.com/public/products/thinBasic/help/html/index.html?numericvariables.htm
We have...
Ciao,
equivalent of DWORDLONG is QUAD in thinBasic. I will add DWORDLONG alias in next thinBasic release.
Here an example of GlobalMemoryStatusEx usage.
uses "console"