Where can I download the source code?
I found a download link in this post on the German forum, but that link is outdated.
Regards, Little John
ScriptControl by ts-soft
-
Little John
- Addict

- Posts: 4807
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: ScriptControl by ts-soft
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
Little John
- Addict

- Posts: 4807
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: ScriptControl by ts-soft
Thank you very much, Thomas!
I downladed it, and tried the example "Date.pb" -- I just added at the beginning the line
When running that example, I get an error in ScriptControl.pb on line 345
The error message is
Same problem e.g. with "test3.pb".
I am using PB 4.51 on Windows XP x86.
Regards, Little John
I downladed it, and tried the example "Date.pb" -- I just added at the beginning the line
Code: Select all
XIncludeFile "..\Source\ScriptControl.pb"Code: Select all
ProcedureDLL SCtr_SetLanguage(Language.s)
ProcedureReturn ScriptControl\put_Language(Language) ; << error
EndProcedureCode: Select all
Ungültiger Speicherzugriff (Lesefehler an der Adresse 0)I am using PB 4.51 on Windows XP x86.
Regards, Little John
Re: ScriptControl by ts-soft
The Source is to compile as UserLib!
A UserLib have a Init and a End Function.
If you use the source as Include, you have to add:
A UserLib have a Init and a End Function.
If you use the source as Include, you have to add:
Code: Select all
ScriptControl_Init()
...
...
ScriptControl_End()PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
Little John
- Addict

- Posts: 4807
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
