Rem list_box object in function format. May be usefull in some app's.
Rem
Program slightly modified, see next posting
Search found 675 matches
- Sun Apr 14, 2013 11:47 am
- Forum: BASIC programs
- Topic: List_box object
- Replies: 2
- Views: 6027
- Flag:

- Fri Apr 12, 2013 7:36 pm
- Forum: BASIC programs
- Topic: Solving lineair equations
- Replies: 9
- Views: 17511
- Flag:

Solving lineair equations
rem solving a set of n lineair equations with n unknowns rem option base 1 dim mat(7,7),inv(7,7),x(7),rhs(7) mat(1,1)=0 inv(1,1)=0 rhs(1)=0 x(1)=0 draw color 0,0,0 fill color .8,.8,.8 get_n: input "Enter the number of equations (2 - 7)":n if n<2 or n>7 then goto get_n graphics cls orient: if screen_...
- Thu Apr 11, 2013 4:58 pm
- Forum: BASIC programs
- Topic: Spirograph
- Replies: 4
- Views: 11039
- Flag:

Spirograph
option base 1 option angle degrees randomize graphics fill color 0,0,0 maxx=screen_width() maxy=screen_height() cx=maxx/2 cy=maxy/2 bigr=300 omega=10 dt=1 loop: fill rect 0,0 to maxx,maxy smalr=rnd(150)+100 ratio=smalr/bigr graphics lock draw to cx+bigr,cy for t=0 to 5000 step dt theta=omega*t a...
- Wed Apr 10, 2013 2:00 pm
- Forum: BASIC programs
- Topic: Color selector
- Replies: 0
- Views: 7457
- Flag:

Color selector
Rem color selector Rem selecting R,G,B values will produce the resulting color. Rem for iPad only gosub init_prog loop1: r=red/255 g=green/255 b=blue/255 fill color r,0,0 fill rect x(1)+2,yo-158 to x(1)+78,yo-62 fill color 0,g,0 fill rect x(2)+2,yo-158 to x(2)+78,yo-62 fill color 0,0,b fill rect x(3...
- Tue Apr 09, 2013 12:35 pm
- Forum: Other topics
- Topic: Welcome to smart BASIC forum!
- Replies: 2
- Views: 7641
- Flag:

Re: Welcome to smart BASIC forum!
Hi all,
I have used SmartBasic some time ago and are happy to see that there exists a forum now.
I want to upgrade to the latest version and just TO BE SURE: will my own programs be preserved while updating?
Thanks (by the way: i am Dutch)
I have used SmartBasic some time ago and are happy to see that there exists a forum now.
I want to upgrade to the latest version and just TO BE SURE: will my own programs be preserved while updating?
Thanks (by the way: i am Dutch)