Click here to Skip to main content
15,895,283 members
Everything / Programming Languages / Powerbasic

Powerbasic

Powerbasic

Great Reads

by Chris Boss
More about BASIC and what can be accomplished with the language
by Chris Boss
Why some prefer the BASIC language over others
by Chris Boss
Visual Basic 6.0 just doesn’t want to disappear. Why ? Likely many have written vital applications using VB 6.0 and Visual Basic dot.net is so different that it is not a viable option.
by Chris Boss
A short introduction to using the Powerbasic 6.0 console compiler with the Ontime RTOS-32 embedded operating system

Latest Articles

by gbeene
Capture protected document content as text without the need for breaking DRM
by Chris Boss
More about BASIC and what can be accomplished with the language
by Chris Boss
Visual Basic 6.0 just doesn’t want to disappear. Why ? Likely many have written vital applications using VB 6.0 and Visual Basic dot.net is so different that it is not a viable option.
by Chris Boss
I have followed stories about learning to code in education and am intrigued by what I have read.

All Articles

Sort by Score

Powerbasic 

15 Nov 2022 by Chris Boss
More about BASIC and what can be accomplished with the language
23 Aug 2018 by Chris Boss
Why some prefer the BASIC language over others
4 Sep 2019 by Chris Boss
Visual Basic 6.0 just doesn’t want to disappear. Why ? Likely many have written vital applications using VB 6.0 and Visual Basic dot.net is so different that it is not a viable option.
12 Sep 2018 by Chris Boss
A short introduction to using the Powerbasic 6.0 console compiler with the Ontime RTOS-32 embedded operating system
21 Mar 2023 by gbeene
Capture protected document content as text without the need for breaking DRM
13 Sep 2013 by Chris Boss
Desktop App Builder for non-programmers for Education
4 Sep 2013 by Chris Boss
Draw pictures using much simpler means, including the good old fashioned Stamping technique.
26 Feb 2021 by Member 13805328
trapping error before sub or function using a declare DECLARE FUNCTION GetProfilesDirectoryA IMPORT "USERENV.DLL" ALIAS "GetProfilesDirectoryA" ( _ BYREF lpProfilesDir AS ASCIIZ _ ' __out LPSTR lpProfilesDir , BYREF...
26 Feb 2021 by Dave Kreskowiak
On Windows 10 64-bit, there's two versions of the .DLL. One is in System32 and the other is in SysWOW64. If the file is missing from system32, you might want to investigate that with Using System File Checker in Windows 10[^] Your machine...
16 Apr 2017 by zapsolution
Midi keyboard with both mouse and computer keyboard control
26 Nov 2013 by Chris Boss
3D Sandbox with programable logic built in
3 Mar 2019 by Chris Boss
I have followed stories about learning to code in education and am intrigued by what I have read.
10 Oct 2015 by Member 12049051
I need to create a power function in oz by by reusing the intermediate results. For example, calculating 2^8 in 3 calculations by saying 2^2 = 2*2, 2^4 = 2^2 * 2^2, 2^8 = 2^4 * 2^4. What I have so far: declare proc {Powerp N M K} if M == 0 then K = 1 ...
1 Jun 2022 by Melissa Peterson
Need to create and run a script that will update .bat project template (Method Validation). Script will be used to update 119 instances of the template in the TFS projects. What I have tried: Tried doing this manually and it's very time consuming.