Recent posts

#1
I see it is complete with source code and public license. It is built around sqlite3, so it could be very useful in database projects.
#2
microA Interpreter / VERSION 12
Last post by Zlatko Vid - Today at 04:21:42 PM
First release of micro(A) with UserDefinedFunctions
 :)

both Code editor and interpreter compiled with o2-SC 604
#3
OxygenBasic / Re: Array Ubound problem
Last post by Zlatko Vid - Today at 04:16:31 PM
QuoteHow do yo ufind out if the Array is 0-based or 1-based and how large it is?

easy
indexbase ..you define yourself
sizeOf() return array size
#4
General Discussion / Re: Paul Squirres going to ret...
Last post by Zlatko Vid - Today at 04:13:46 PM
so you suggest to download forum
ziped 1.5MB...

may i ask why ?
#5
3 hours, epic!


How AI was Stolen

Then & Now
2 may 2024


#7
OxygenBasic Examples / Array redim example
Last post by Frank Brübach - Yesterday at 07:23:40 PM
Hello all

Here a little Array redim example

' array index redim example, by frank bruebach
' oxygen basic
'
indexbase 1

DIM MyArray(10) AS INTEGER '1 TO 10
DIM i AS INTEGER

' Fill the array with some values
FOR i = LBOUND(MyArray) TO UBOUND(MyArray)
    MyArray(i) = i * 10
NEXT i

' Display the values in the array
FOR i = LBOUND(MyArray) TO UBOUND(MyArray)
    print "MyArray(" + STR(i) + ") = " + STR(MyArray(i))
NEXT i

' Re-dimension the array to have 15 elements
REDIM integer MyArray(15) '1 to 15


' Fill the new array elements with some values
FOR i = UBOUND(MyArray) - 4 TO UBOUND(MyArray)
    MyArray(i) = i * 5
NEXT i

' Display the values in the re-dimensioned array
FOR i = LBOUND(MyArray) TO UBOUND(MyArray)
    print "MyArray(" + STR(i) + ") = " + STR(MyArray(i))
NEXT i


#8
General Discussion / Why Some Designs Are Impossibl...
Last post by Charles Pegge - Yesterday at 03:25:06 PM
Design Theory
26 april 2024


#9
OxygenBasic / Re: Create a PDF directly
Last post by Nicola - Yesterday at 10:45:09 AM
Hi Theo,
I'm using COPILOT to do some research. In fact, I find it useful as a research tool, but I often find inaccuracies. It is also often inaccurate by taking information that has been classified as incorrect to be true. I've reported it several times...
#10
OxygenBasic / Re: Array Ubound problem
Last post by Nicola - Yesterday at 10:40:37 AM
Good morning.
For me the use of vectors or matrices are very important. Since I was in school I learned how to use them and I stuck with them.
As Charles has shown through the examples in... demos\math, are very useful...