| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 49 online users. » 0 Member(s) | 47 Guest(s) Bing, Applebot
|
| Latest Threads |
ZScript
Forum: Discussion
Last Post: z-s
Yesterday, 03:31 AM
» Replies: 0
» Views: 24
|
I think that no more Smal...
Forum: Discussion
Last Post: eddylo
01-20-2026, 11:02 PM
» Replies: 0
» Views: 19
|
Small Basic Coder-A New G...
Forum: Discussion
Last Post: AbsoluteBeginner
01-17-2026, 07:57 PM
» Replies: 1
» Views: 416
|
ZS Small Basic Coder GPT.
Forum: Discussion
Last Post: z-s
01-13-2026, 03:32 AM
» Replies: 4
» Views: 132
|
3D maze in browser contro...
Forum: Discussion
Last Post: stevantosic
01-08-2026, 12:51 PM
» Replies: 128
» Views: 33,306
|
ZS Extension.
Forum: Extensions
Last Post: AbsoluteBeginner
01-04-2026, 02:50 PM
» Replies: 109
» Views: 28,278
|
Happy New Year!
Forum: Discussion
Last Post: AbsoluteBeginner
12-31-2025, 10:08 AM
» Replies: 0
» Views: 71
|
Six different 8-bit emula...
Forum: Discussion
Last Post: stevantosic
12-28-2025, 06:02 PM
» Replies: 2
» Views: 87
|
Challenge-Command Line GW
Forum: Challenges
Last Post: WhTurner
12-22-2025, 06:24 PM
» Replies: 7
» Views: 2,263
|
Google Search Terminal SB...
Forum: Standard Small Basic
Last Post: z-s
12-17-2025, 09:09 AM
» Replies: 1
» Views: 337
|
|
|
| LDUtilities.Version() function |
|
Posted by: Scout - 09-10-2023, 08:40 PM - Forum: Extensions
- Replies (6)
|
 |
I downloaded the latest version 1.24 and the beta version 1.25 and copied each into the LIB directory.
The file attribute also shows these versions.
However, the LDUtilities.Version() function always runs to error 403 and shows version 1.23.
The extension manager cannot download the database.
Maybe the old URL is still accessed here?
|
|
|
| Do we need a new SB Q&A forum? |
|
Posted by: litdev - 09-10-2023, 04:41 PM - Forum: Discussion
- Replies (2)
|
 |
I've been doing a bit of looking and see that MS Q&A is still active with Small Basic questions, so not sure if this forum is needed.
The MS Q&A somewhat suffers from Small and Basic questions that have nothing to do with Small Basic programming, so there may be benefit from this dedicated forum.
Anyway, I will leave the forum here and if there is interest it may grow.
|
|
|
| Challenge 1 - TextWindow login |
|
Posted by: litdev - 09-04-2023, 09:18 AM - Forum: Challenges
- Replies (1)
|
 |
Write a TextWindow login program.
It should have options to: - create and account and set a password
- login using existing account and password (checking the password)
To extend the program you could:- have a reset password option
- save the passwords so that the program can be rerun
- consider how to 'encrypt' the passwords
- write a GraphicsWindow version
|
|
|
| Flickr |
|
Posted by: litdev - 09-02-2023, 07:33 PM - Forum: Extensions
- Replies (8)
|
 |
I have previously fixed issues with Small Basic Flickr command, due to changes in flickr api.
I had a look at it again as it doesn't work and determined that this time the api key has expired. I got a new api key and updated LDUtilities.FixFlickr. It seems to need to download the file rather than just load with ImageList, but the following works (Beta 1.2.25.0).
Code: LDNetwork.SetSSL()
flickr = LDUtilities.FixFlickr()
imageURL = Flickr.GetRandomPicture("Car")
tmpFile = File.GetTemporaryFilePath()
LDNetwork.DownloadFile(tmpFile,imageURL)
image = ImageList.LoadImage(tmpFile)
File.DeleteFile(tmpFile)
GraphicsWindow.DrawResizedImage(image,0,0,GraphicsWindow.Width,GraphicsWindow.Height)
|
|
|
| Network file transfer |
|
Posted by: litdev - 09-02-2023, 05:27 PM - Forum: Extensions
- No Replies
|
 |
While reinstating website and extension downloader, I found that various webserver requests, like ftp etc failed. The solution was to set the following (C#) before starting web requests.
Code: WebRequest.DefaultWebProxy.Credentials = CredentialCache.DefaultCredentials;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
I then tried one of my old programs that uses a web resource image and it failed. It was the same SSL security issue. The same fix, implemented with LDNetwork.SetSSL(). The following SB now works, even with standard SB ImageList web access for networked resources.
Code: LDNetwork.SetSSL()
image = ImageList.LoadImage("https://litdev.uk/game_images/rubic.png")
GraphicsWindow.DrawImage(image,0,0)
This should open up a lot of options for networked resources, and is available with LitDev Beta version (1.2.25.0).
|
|
|
| Welcome |
|
Posted by: litdev - 09-01-2023, 08:29 AM - Forum: Discussion
- Replies (2)
|
 |
Welcome to this Small Basic forum.
The idea of this forum is to provide a resource for questions and answers.
Please use this Discussion section for general Small Basic discussions.
Due the large number of spam users, we are relatively agressive banning and in some cases preventing acount activation. If you are having trouble with activation, then please contact admin@litdev.uk.
|
|
|
|