<?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, 19 Jun 2026 01:31:31 +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>
	</channel>
</rss>