Recent posts

#1
I have no problem signing in to their forum
my opinion is that powerbasic will shut down including the forum
#2
The ascent propulsion system of the Lunar module  ???

https://en.wikipedia.org/wiki/Ascent_propulsion_system
#4
General Discussion / The future of ... PowerBasic?
Last post by Theo Gottwald - Today at 12:04:11 PM
I want to reopen that topic, as we have new developments.
I have heared that the PowerBasic/Drake-Forum is only up for a limited time.
The responsible people seem not to answer any mails any more.

They do not seem to sell their compilers anymore.
So i would like your all opinion.

Will we have a Powerbasic successor (from Jürgen?)?
A Variant of O2 with Powerbasic Syntax?

Or anybody has other news from the People at Powerbasic-INC.?
#5
No human was ever on the moon.
Only Robots went there.

Kubrik_Moon.jpg

Moon_21.jpg

Moon45.jpg
#6
General Discussion / Why is it so hard to return to...
Last post by Charles Pegge - Yesterday at 03:43:56 PM

Dr. Paul M. Sutter
16 may 2024

#7
General Discussion / Biggest Solar Storm in 20 Year...
Last post by Charles Pegge - May 18, 2024, 10:34:00 PM
Biggest Solar Storm in 20 Years Has Hit The Earth. But It's Not Over Yet

The Secrets of the Universe
15 may 2024


#8
Code to share / Re: Example Intro and HalProm...
Last post by Zlatko Vid - May 18, 2024, 05:04:32 PM
QuoteI don't have to prove anything and actually it doesn't matter what you think.

First of all..i am not asking you about prove
and good to know that i know now what is you attitude...
You helped me...really ? ha ha
ok i don't care  ;D 
#9
Code to share / Bufferstring example
Last post by Frank Brübach - May 18, 2024, 03:56:12 PM
Bufferstring example o2 Convert to halProment

'----------------------------
'APPENDING INTO STRING BUFFER
'============================

  ' -- original bufferstring (demos/basics) oxygen example convert to halProment
  ' -- no changes needed ;)
  '
  dim i,j as long
  dim s,t as string
  j=1
  s=space 500
  for i=1 to 10
    t=str(i) chr(9) chr(i+64) chr(13) chr(10)
    mid (s,j)=t
    j+=len t
  next
  print "result 1 oxygen"
  print left s,j-1
 
  ' oxygen ends
'-------------------------------------------- //

' halproment style alternative 2x

  pim i,j as pro
  pim s,t as pstring

  j=1
  s=space 500
  for i=1 to 10
    t=str(i) chr(9) chr(i+64) chr(13) chr(10)
    mid (s,j)=t
    j+=len t
  next
  printy "result 2 halProment"

  printy left s,j-1
 
  printy "result 3 halProment"
  p? left s,j-1

' halproment style alternative ends


#10
Code to share / Update 3
Last post by Frank Brübach - May 18, 2024, 02:53:46 PM
Hello all Here is an Update 3 of halProment Basic with deleted Image of Intro Scene and replaced it with mother earth Image ;)

All examples you can find Here in *.rar folder and new halpromide24 Editor