<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Small Basic Forum - All Forums]]></title>
		<link>https://litdev.uk/mybb/</link>
		<description><![CDATA[Small Basic Forum - https://litdev.uk/mybb]]></description>
		<pubDate>Fri, 19 Jun 2026 13:15:05 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[ListView issues by use LDDatabase.AddListView]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=606</link>
			<pubDate>Mon, 08 Jun 2026 16:39:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=606</guid>
			<description><![CDATA[Hello everyone,<br />
<br />
I have the following problem:<br />
I create a ListView in a program using<br />
<br />
<span style="font-style: italic;" class="mycode_i">LV = LDDataBase.AddListView(Width, Height)</span><br />
<br />
With<br />
<br />
<span style="font-style: italic;" class="mycode_i">LDControls.ListViewSelectionChanged = ListViewSelectionChanged</span>  <br />
<br />
the subroutine <span style="font-style: italic;" class="mycode_i">ListViewSelectionChanged</span> is supposed to be called when a row in the ListView is selected.<br />
<br />
With<br />
<span style="font-style: italic;" class="mycode_i">DBQuerry = LDDataBase.Query(DB, "Select * from " + TableName[BP], LV, "True")</span>  <br />
I fill the ListView with all values from the defined table. Two records are present.<br />
The program parts look like this:<br />
<span style="font-style: italic;" class="mycode_i">SVSC = "False"</span>  <br />
<span style="font-style: italic;" class="mycode_i">LDFocus.SetFocus(TBInput[1][InputText[1]])</span>  <br />
<span style="font-style: italic;" class="mycode_i">Running = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">While Running = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">Program.Delay(20)</span>  <br />
<span style="font-style: italic;" class="mycode_i">CheckButtonPressed()</span>  <br />
<span style="font-style: italic;" class="mycode_i">CheckListViewSelect()</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndWhile</span>  <br />
<span style="font-style: italic;" class="mycode_i">Program.End()</span><br />
<span style="font-style: italic;" class="mycode_i">Sub CheckListViewSelect</span>  <br />
<span style="font-style: italic;" class="mycode_i">If SVSC = "True" Then</span>  <br />
<span style="font-style: italic;" class="mycode_i">SelectedRow = LDControls.LastListViewRow</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine(SelectedRow)</span>  <br />
<span style="font-style: italic;" class="mycode_i">LVValues = LDControls.ListViewGetRow(LV, SelectedRow)</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine(LVValues)</span>  <br />
<span style="font-style: italic;" class="mycode_i">SVSC = "False"</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine("CheckListViewSelect " + SVSC)</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndIf</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndSub</span><br />
<span style="font-style: italic;" class="mycode_i">Sub ListViewSelectionChanged</span>  <br />
<span style="font-style: italic;" class="mycode_i">SVSC = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine("ListViewSelectionChanged " + SVSC)</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndSub</span><br />
Nothing is printed in <span style="font-style: italic;" class="mycode_i">CheckListViewSelect</span>.<br />
Does it not work because the ListView was defined using<br />
<span style="font-style: italic;" class="mycode_i">LV = LDDataBase.AddListView(Width, Height)</span>  <br />
?<br />
LitDev, could you please check this and possibly provide a solution?<br />
Thank you<br />
Martin<br />
Show program GXMV538.000]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
<br />
I have the following problem:<br />
I create a ListView in a program using<br />
<br />
<span style="font-style: italic;" class="mycode_i">LV = LDDataBase.AddListView(Width, Height)</span><br />
<br />
With<br />
<br />
<span style="font-style: italic;" class="mycode_i">LDControls.ListViewSelectionChanged = ListViewSelectionChanged</span>  <br />
<br />
the subroutine <span style="font-style: italic;" class="mycode_i">ListViewSelectionChanged</span> is supposed to be called when a row in the ListView is selected.<br />
<br />
With<br />
<span style="font-style: italic;" class="mycode_i">DBQuerry = LDDataBase.Query(DB, "Select * from " + TableName[BP], LV, "True")</span>  <br />
I fill the ListView with all values from the defined table. Two records are present.<br />
The program parts look like this:<br />
<span style="font-style: italic;" class="mycode_i">SVSC = "False"</span>  <br />
<span style="font-style: italic;" class="mycode_i">LDFocus.SetFocus(TBInput[1][InputText[1]])</span>  <br />
<span style="font-style: italic;" class="mycode_i">Running = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">While Running = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">Program.Delay(20)</span>  <br />
<span style="font-style: italic;" class="mycode_i">CheckButtonPressed()</span>  <br />
<span style="font-style: italic;" class="mycode_i">CheckListViewSelect()</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndWhile</span>  <br />
<span style="font-style: italic;" class="mycode_i">Program.End()</span><br />
<span style="font-style: italic;" class="mycode_i">Sub CheckListViewSelect</span>  <br />
<span style="font-style: italic;" class="mycode_i">If SVSC = "True" Then</span>  <br />
<span style="font-style: italic;" class="mycode_i">SelectedRow = LDControls.LastListViewRow</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine(SelectedRow)</span>  <br />
<span style="font-style: italic;" class="mycode_i">LVValues = LDControls.ListViewGetRow(LV, SelectedRow)</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine(LVValues)</span>  <br />
<span style="font-style: italic;" class="mycode_i">SVSC = "False"</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine("CheckListViewSelect " + SVSC)</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndIf</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndSub</span><br />
<span style="font-style: italic;" class="mycode_i">Sub ListViewSelectionChanged</span>  <br />
<span style="font-style: italic;" class="mycode_i">SVSC = "True"</span>  <br />
<span style="font-style: italic;" class="mycode_i">TextWindow.WriteLine("ListViewSelectionChanged " + SVSC)</span>  <br />
<span style="font-style: italic;" class="mycode_i">EndSub</span><br />
Nothing is printed in <span style="font-style: italic;" class="mycode_i">CheckListViewSelect</span>.<br />
Does it not work because the ListView was defined using<br />
<span style="font-style: italic;" class="mycode_i">LV = LDDataBase.AddListView(Width, Height)</span>  <br />
?<br />
LitDev, could you please check this and possibly provide a solution?<br />
Thank you<br />
Martin<br />
Show program GXMV538.000]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[D'ont read a file]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=585</link>
			<pubDate>Sun, 12 Apr 2026 09:11:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=585</guid>
			<description><![CDATA[In the following code there is a problem, it does not read the file for me.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Sub frasi_puoi_passare<br />
max1a = 0<br />
min1a = 1<br />
numero_estratto1a = 0<br />
' Chiedi il percorso del file<br />
filePath1a = Program.Directory +  "/testidescrittivi/fileyes1.txt"<br />
  ' Legge tutto il contenuto del file<br />
  contenuto1a = File.ReadContents(filePath1a)<br />
  <br />
for i1a=1 to 999 ' ' if there are not more then 999 lines in the file<br />
contenuto1a[i1a]=File.ReadLine(filepath1a,i1a)<br />
if contenuto1a[i1a]="" then<br />
i1a=1000<br />
else<br />
lunghezza1a=i1a <br />
endif<br />
endfor <br />
  <br />
  <br />
  GraphicsWindow.ShowMessage(contenuto1a,"Contenuto") <br />
  <br />
' Calcoliamo la lunghezza della lista<br />
'lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
GraphicsWindow.ShowMessage(lunghezza1a,"LUNGHEZZA")<br />
numeroCasuale1a = Math.GetRandomNumber(lunghezza1a - min1a) + (min1a - 1)<br />
' Generiamo un indice casuale tra 1 e lunghezza<br />
' Estraiamo l'elemento corrispondente<br />
elementoCasuale1a = contenuto1a[numerocasuale1a]<br />
' Mostriamo il risultato<br />
GraphicsWindow.ShowMessage("Elemento estratto: " + elementoCasuale1a, "elemento") <br />
EndSub <br />
<br />
<br />
file:<br />
<br />
Puoi passare,<br />
Vai avanti,<br />
Prosegui,<br />
Non ti fermare</code></div></div>]]></description>
			<content:encoded><![CDATA[In the following code there is a problem, it does not read the file for me.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Sub frasi_puoi_passare<br />
max1a = 0<br />
min1a = 1<br />
numero_estratto1a = 0<br />
' Chiedi il percorso del file<br />
filePath1a = Program.Directory +  "/testidescrittivi/fileyes1.txt"<br />
  ' Legge tutto il contenuto del file<br />
  contenuto1a = File.ReadContents(filePath1a)<br />
  <br />
for i1a=1 to 999 ' ' if there are not more then 999 lines in the file<br />
contenuto1a[i1a]=File.ReadLine(filepath1a,i1a)<br />
if contenuto1a[i1a]="" then<br />
i1a=1000<br />
else<br />
lunghezza1a=i1a <br />
endif<br />
endfor <br />
  <br />
  <br />
  GraphicsWindow.ShowMessage(contenuto1a,"Contenuto") <br />
  <br />
' Calcoliamo la lunghezza della lista<br />
'lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
GraphicsWindow.ShowMessage(lunghezza1a,"LUNGHEZZA")<br />
numeroCasuale1a = Math.GetRandomNumber(lunghezza1a - min1a) + (min1a - 1)<br />
' Generiamo un indice casuale tra 1 e lunghezza<br />
' Estraiamo l'elemento corrispondente<br />
elementoCasuale1a = contenuto1a[numerocasuale1a]<br />
' Mostriamo il risultato<br />
GraphicsWindow.ShowMessage("Elemento estratto: " + elementoCasuale1a, "elemento") <br />
EndSub <br />
<br />
<br />
file:<br />
<br />
Puoi passare,<br />
Vai avanti,<br />
Prosegui,<br />
Non ti fermare</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[close a file]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=583</link>
			<pubDate>Tue, 07 Apr 2026 22:01:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=583</guid>
			<description><![CDATA[closing a txt file in small basic, I found a link that said it wasn't necessary, but instead if I try to run the program 2 times it gives me an error, because the file is already in use by another task]]></description>
			<content:encoded><![CDATA[closing a txt file in small basic, I found a link that said it wasn't necessary, but instead if I try to run the program 2 times it gives me an error, because the file is already in use by another task]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[random in a array]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=580</link>
			<pubDate>Fri, 27 Mar 2026 19:02:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=580</guid>
			<description><![CDATA[the line of code <br />
<br />
lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
<br />
give me a lunghezza equal zero = 0]]></description>
			<content:encoded><![CDATA[the line of code <br />
<br />
lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
<br />
give me a lunghezza equal zero = 0]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sqlite Version]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=579</link>
			<pubDate>Mon, 23 Mar 2026 19:22:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=8">Lester</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=579</guid>
			<description><![CDATA[LitDev, What version of SQLite is in LDDataBase Library?  Thanks, Lester]]></description>
			<content:encoded><![CDATA[LitDev, What version of SQLite is in LDDataBase Library?  Thanks, Lester]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Small Basic Explorer with LitDev extentions]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=577</link>
			<pubDate>Tue, 17 Mar 2026 15:48:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=577</guid>
			<description><![CDATA[Hello Small Basic friends,<br />
<br />
here is a challenge for you. Extend the Mini Explorer KBQG606.000 with additional functionalities or speed up the program’s execution.<br />
<br />
I’m excited to see what kind of Small Basic Explorer you will create.<br />
<br />
Good luck with your programming!<br />
martmen<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=197" target="_blank" title="">Small Basic Explorer.jpg</a> (Size: 223.8 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hello Small Basic friends,<br />
<br />
here is a challenge for you. Extend the Mini Explorer KBQG606.000 with additional functionalities or speed up the program’s execution.<br />
<br />
I’m excited to see what kind of Small Basic Explorer you will create.<br />
<br />
Good luck with your programming!<br />
martmen<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=197" target="_blank" title="">Small Basic Explorer.jpg</a> (Size: 223.8 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Example Program]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=576</link>
			<pubDate>Fri, 13 Mar 2026 16:15:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=576</guid>
			<description><![CDATA[Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program <span style="font-weight: bold;" class="mycode_b">KLLX711.000</span>.<br />
<br />
Best regards,<br />
Martin<br />
<br />
Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program KLLX711.000.<br />
<br />
Best regards,<br />
Martin]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program <span style="font-weight: bold;" class="mycode_b">KLLX711.000</span>.<br />
<br />
Best regards,<br />
Martin<br />
<br />
Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program KLLX711.000.<br />
<br />
Best regards,<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[BASIC Jam 7 is in progress & info of old Jams.]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=575</link>
			<pubDate>Tue, 10 Mar 2026 02:40:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=11">eddylo</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=575</guid>
			<description><![CDATA[Maybe no forum member has time to participate in this jam:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-dialects-7</a><br />
<br />
By the way, this information is interesting:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7/topic/5834450/6-previous-basic-jams-information-basic-dialectsno-of-time-used-in-each-basic-jam" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-di...-basic-jam</a>]]></description>
			<content:encoded><![CDATA[Maybe no forum member has time to participate in this jam:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-dialects-7</a><br />
<br />
By the way, this information is interesting:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7/topic/5834450/6-previous-basic-jams-information-basic-dialectsno-of-time-used-in-each-basic-jam" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-di...-basic-jam</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[LitDev extension]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=568</link>
			<pubDate>Fri, 20 Feb 2026 09:12:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=568</guid>
			<description><![CDATA[Hello LitDev,<br />
<br />
I hope you are doing well. Several corrections for your extension have already been submitted.<br />
May I kindly ask when a new version of the extensions might be available?<br />
<br />
Best Regards<br />
Martin]]></description>
			<content:encoded><![CDATA[Hello LitDev,<br />
<br />
I hope you are doing well. Several corrections for your extension have already been submitted.<br />
May I kindly ask when a new version of the extensions might be available?<br />
<br />
Best Regards<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Button with icons]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=565</link>
			<pubDate>Sun, 08 Feb 2026 11:07:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=565</guid>
			<description><![CDATA[Hello LitDev, <br />
<br />
is it possible with the LitDev extension to display buttons with icons instead of text? It would be great to be able to use both the standard Windows icons and custom icons.<br />
I want to build my DRAWING program using icons.<br />
<br />
 Many thanks<br />
martmen]]></description>
			<content:encoded><![CDATA[Hello LitDev, <br />
<br />
is it possible with the LitDev extension to display buttons with icons instead of text? It would be great to be able to use both the standard Windows icons and custom icons.<br />
I want to build my DRAWING program using icons.<br />
<br />
 Many thanks<br />
martmen]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Drawing]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=558</link>
			<pubDate>Thu, 29 Jan 2026 10:06:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=558</guid>
			<description><![CDATA[Version 1.0<br />
Description:<br />
 This program provides an interactive drawing surface where<br />
 the user can draw various shapes (circle, ellipse, square,<br />
 rectangle, triangles, polygon, star), move, rotate, zoom,<br />
 fill them with colors, clear, print, save and load drawings.<br />
 It uses Small Basic plus the LitDev extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Show XRKM481.000</span><br />
<hr class="mycode_hr" />
Sample:<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=187" target="_blank" title="">Drawing - Kopie (2).jpg</a> (Size: 63.79 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Version 1.0<br />
Description:<br />
 This program provides an interactive drawing surface where<br />
 the user can draw various shapes (circle, ellipse, square,<br />
 rectangle, triangles, polygon, star), move, rotate, zoom,<br />
 fill them with colors, clear, print, save and load drawings.<br />
 It uses Small Basic plus the LitDev extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Show XRKM481.000</span><br />
<hr class="mycode_hr" />
Sample:<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=187" target="_blank" title="">Drawing - Kopie (2).jpg</a> (Size: 63.79 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Draw sample]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=557</link>
			<pubDate>Sun, 25 Jan 2026 21:39:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=557</guid>
			<description><![CDATA[Hello everyone,<br />
Here is a small drawing program using commands from the LitDev extension. Import TPJB64.000.<br />
<br />
I'm still missing two subroutines:<br />
Sub MoveObjektWithMouse<br />
Sub RotateObjectWitheMouse<br />
<br />
It could also be extended with additional objects.<br />
Anyone who’s interested is welcome to take this as a challenge and share their own version here.<br />
<br />
Best regards<br />
MartMen<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=185" target="_blank" title="">Draw.jpg</a> (Size: 107.68 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
Here is a small drawing program using commands from the LitDev extension. Import TPJB64.000.<br />
<br />
I'm still missing two subroutines:<br />
Sub MoveObjektWithMouse<br />
Sub RotateObjectWitheMouse<br />
<br />
It could also be extended with additional objects.<br />
Anyone who’s interested is welcome to take this as a challenge and share their own version here.<br />
<br />
Best regards<br />
MartMen<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=185" target="_blank" title="">Draw.jpg</a> (Size: 107.68 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ZScript]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=556</link>
			<pubDate>Thu, 22 Jan 2026 03:31:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=13">z-s</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=556</guid>
			<description><![CDATA[Hi everyone i started programming with sb but today made a new language.<br />
ZScript is a typesafe with new keywords which transpile to JS and can be run in build itself.<br />
I just have a windows PC and a linux server to test it ut need someone for testing on cross platform os.<br />
<a href="https://github.com/zscriptlang/zscript" target="_blank" rel="noopener" class="mycode_url">https://github.com/zscriptlang/zscript</a>]]></description>
			<content:encoded><![CDATA[Hi everyone i started programming with sb but today made a new language.<br />
ZScript is a typesafe with new keywords which transpile to JS and can be run in build itself.<br />
I just have a windows PC and a linux server to test it ut need someone for testing on cross platform os.<br />
<a href="https://github.com/zscriptlang/zscript" target="_blank" rel="noopener" class="mycode_url">https://github.com/zscriptlang/zscript</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I think that no more SmallBasic Open Edition]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=555</link>
			<pubDate>Tue, 20 Jan 2026 23:02:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=11">eddylo</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=555</guid>
			<description><![CDATA[The URL of the original project: <a href="https://github.com/EkBass/SmallBasicOpenEditionDll/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/EkBass/SmallBasicOpen...ree/master</a><br />
<br />
On the other hand, I see the discussion thread of a new BASIC dialect project in a  BASIC forum:<br />
<br />
<a href="https://itch.io/t/5793515/bazzbasic-was-released" target="_blank" rel="noopener" class="mycode_url">https://itch.io/t/5793515/bazzbasic-was-released</a><br />
<br />
<span style="color: #434343;" class="mycode_color"><span style="font-family: Lato, sans-serif;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">BazzBasic </span></span></span>is the name of the new langauge. <br />
<br />
Perhaps the developer really abandon SmallBasic Open edition.<br />
<img src="https://litdev.uk/mybb/images/smilies/undecided.png" alt="Undecided" title="Undecided" class="smilie smilie_20" />]]></description>
			<content:encoded><![CDATA[The URL of the original project: <a href="https://github.com/EkBass/SmallBasicOpenEditionDll/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/EkBass/SmallBasicOpen...ree/master</a><br />
<br />
On the other hand, I see the discussion thread of a new BASIC dialect project in a  BASIC forum:<br />
<br />
<a href="https://itch.io/t/5793515/bazzbasic-was-released" target="_blank" rel="noopener" class="mycode_url">https://itch.io/t/5793515/bazzbasic-was-released</a><br />
<br />
<span style="color: #434343;" class="mycode_color"><span style="font-family: Lato, sans-serif;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">BazzBasic </span></span></span>is the name of the new langauge. <br />
<br />
Perhaps the developer really abandon SmallBasic Open edition.<br />
<img src="https://litdev.uk/mybb/images/smilies/undecided.png" alt="Undecided" title="Undecided" class="smilie smilie_20" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ZS Small Basic Coder GPT.]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=546</link>
			<pubDate>Tue, 06 Jan 2026 05:17:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=13">z-s</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=546</guid>
			<description><![CDATA[In some free time I quickly made whole knowledge data from XML of extensions and ld physics pdf small basic introduction pdf and some sb samples and made a small basic coding gpt.<br />
Hope you will try it and I think it will make good code with using extension also.<br />
It is also available on GPT store.<br />
<a href="https://chatgpt.com/g/g-695c8cde2dc4819190e17c8935709bed-zs-small-basic-coder" target="_blank" rel="noopener" class="mycode_url">https://chatgpt.com/g/g-695c8cde2dc48191...asic-coder</a><br />
<br />
I will try to make it more good with more resources by making a TXT knowledge base of all litdev extension samples to make it much more better in LD extension.<br />
<br />
And I will be happy if anyone here got time to fetch some samples from old forum small basic website etc and post them here to improve our small basic AI.<br />
You can also post here your made programs and codes for extension usage of different extensions it will be big help.<br />
Also I got email of another BASIC JAM ON itch.io last time was fun and this time I will be using this AI to make a good game.]]></description>
			<content:encoded><![CDATA[In some free time I quickly made whole knowledge data from XML of extensions and ld physics pdf small basic introduction pdf and some sb samples and made a small basic coding gpt.<br />
Hope you will try it and I think it will make good code with using extension also.<br />
It is also available on GPT store.<br />
<a href="https://chatgpt.com/g/g-695c8cde2dc4819190e17c8935709bed-zs-small-basic-coder" target="_blank" rel="noopener" class="mycode_url">https://chatgpt.com/g/g-695c8cde2dc48191...asic-coder</a><br />
<br />
I will try to make it more good with more resources by making a TXT knowledge base of all litdev extension samples to make it much more better in LD extension.<br />
<br />
And I will be happy if anyone here got time to fetch some samples from old forum small basic website etc and post them here to improve our small basic AI.<br />
You can also post here your made programs and codes for extension usage of different extensions it will be big help.<br />
Also I got email of another BASIC JAM ON itch.io last time was fun and this time I will be using this AI to make a good game.]]></content:encoded>
		</item>
	</channel>
</rss>