Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 38 online users. » 0 Member(s) | 36 Guest(s) Bing, Applebot
|
Latest Threads |
New project
Forum: Discussion
Last Post: litdev
10-13-2025, 09:09 AM
» Replies: 2
» Views: 48
|
LDGeography.GetAllCountri...
Forum: Extensions
Last Post: litdev
10-05-2025, 12:33 PM
» Replies: 5
» Views: 192
|
TCP/IP Socket Programming
Forum: Extensions
Last Post: litdev
09-27-2025, 03:36 PM
» Replies: 23
» Views: 2,151
|
Hi everyone
Forum: Discussion
Last Post: z-s
09-25-2025, 08:14 AM
» Replies: 0
» Views: 99
|
Prototype for 3D Small Ba...
Forum: Discussion
Last Post: sm4llprogrammer2008
09-24-2025, 09:50 PM
» Replies: 0
» Views: 129
|
Really great announcement...
Forum: Discussion
Last Post: sm4llprogrammer2008
09-24-2025, 09:41 PM
» Replies: 4
» Views: 382
|
Challenge 14 - Rainbow
Forum: Challenges
Last Post: martmen
09-20-2025, 01:42 PM
» Replies: 5
» Views: 374
|
Small Basic super slow ??
Forum: Standard Small Basic
Last Post: sm4llprogrammer2008
09-14-2025, 11:07 PM
» Replies: 27
» Views: 2,996
|
Sudoku Solver Publishe...
Forum: Standard Small Basic
Last Post: The Old Guy
09-01-2025, 06:20 AM
» Replies: 7
» Views: 532
|
Challenge 13 - Search uti...
Forum: Challenges
Last Post: martmen
08-29-2025, 10:13 AM
» Replies: 8
» Views: 817
|
|
|
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)
|
|
|
|