<?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 - Portal]]></title>
		<link>https://litdev.uk/mybb/</link>
		<description><![CDATA[Small Basic Forum - https://litdev.uk/mybb]]></description>
		<pubDate>Fri, 01 May 2026 02:17:51 +0000</pubDate>
		<generator>MyBB</generator>
		<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>
	</channel>
</rss>