BASIC (Beginner’s All-purpose Symbolic Instruction Code) is a family of high-level programming languages designed to be easy to use.

learn more… | top users | synonyms

0
votes
0answers
7 views

VisualBasic 2010 Control Programs using remote desktop

So I have multiple servers where I run my games. Sometimes I need to open programs but I don't have much time to open all my servers with Remote Desktop and then open the programs I want.. So I would ...
0
votes
0answers
6 views

TrueBasic Error: Library LEVEL1.TRU: no such file

I programmed a game in truebasic and the main program has to call an external library named "LEVEL1.TRU". The main program and LEVEL1.TRU are in the same folder, but for some reason I get the ...
1
vote
2answers
29 views

circular byte shifting in an array

I'm coding an LED display ( 7x48 ) and the language im working in is Basic (no former experience in that language, but in C/C++) and i have a small issue. I have an array ( red[20] of byte ) and an ...
0
votes
1answer
24 views

BASIC: What does an exclamation mark at the end of a function name mean?

DECLARE FUNCTION AanUit! (Baan AS INTEGER, Aktie AS INTEGER) DECLARE FUNCTION fVraagStatus! (Baan AS INTEGER) DECLARE FUNCTION fMelding! (Tekst AS STRING, Warning AS INTEGER) FUNCTION fVraagStatus ...
3
votes
1answer
42 views

BBC Basic: Cannot plot rectangle on screen

I recently got my hands on a BBC Micro (model B), and been playing around with it as a hobby project. I'm having some trouble with the graphics commands, and was wondering if anyone could point me in ...
0
votes
1answer
20 views

Is there a BASIC command to count the number of characters in a string?

I couldn't find any. Is there one? Google didn't help me, because it's case insensitive and thinks I am looking for "basic" commands.
-1
votes
2answers
57 views

Sprite Health in Pygame [closed]

I'm making a very basic game, and I'm trying to make it so that the bird(player) dodges the rocks and if the bird is hit by the rocks it dies. But I can't figure out how to make the game know if the ...
0
votes
1answer
91 views

Simple Moving Average summation/offset issue

I wrote a simple moving average with a moving window of Temperatures read as a voltage between 0 and 10V. The algorithm appears to work correctly, however, it has a problem where depending upon ...
0
votes
2answers
49 views

Why seems my object to become NULL from one line to the next? - Could it be a hardware thing?

First thing to say: I program in a relatively unknown language: Blitzmax, which is a object oriented Basic dialect. My problem is the following: I wrote a debugmanager which runs in an own thread. So ...
0
votes
1answer
73 views

Python 3 - BASIC Simulator

I'm currently working on a BASIC simulator in Python, as the title suggests. This program should either print "success" or "infinite loop", depending on which one is true. Here is my code: def ...
0
votes
1answer
88 views

SPSS Script from version 15 to version 20 in BASIC

The below script is written in 'Winwrap basic' which is almost identical to VBA. I would like this script to work on SPSS 20, the script works fine on SPSS15 (by changing the file extension from STT ...
1
vote
3answers
82 views

Coding help (KeyBasic)

I have this file http://pastebin.com/pH4Pk0sf without extension, and it may be COBOL, because the computer it's hosted uses BASIC, COBOL and something called "KEY BASIC"... I don't understand this ...
-7
votes
2answers
73 views

Programming code with BASIC [closed]

I have to program in BASIC a code to do this: From a collection of 10,000 cannonballs, a square based pyramid is built with a single cannonball on top and a square number on each layer. How many ...
-2
votes
1answer
28 views

How can i turn BASIC algorithm into javascript? [closed]

Do you remember the days when BASIC-S was still used? I was wondering how can I translate this 10 LET a=0 20 LET b=10 30 PRINT a+b 40 LET a=b 50 GOTO 20 into javascript, jquery or something that I ...
-6
votes
1answer
79 views

Calculate A = 1/2 * 1/(b-k) [closed]

I am trying to create a program that calculates A = 1/2 * 1/(b-k) in BASIC and in Python. I enter b and k and it should give me A. The problem is that A is answered incorrectly if I give values that ...
0
votes
1answer
66 views

Understanding of BASIC code

I need to read some basic code. I never worked with BASIC and ask you help me. There is such code filedialog "Open","*.txt",file$ if file$="" then end open file$ for input as #f 'open ...
10
votes
2answers
1k views

Unknown GW-BASIC function/syntax: Q(var) = var

I'm translating an excessively old GW-BASIC program into JavaScript, and I've come across a piece of syntax that has me stumped. Note (again): totally not my code, and the variable names are all ...
0
votes
1answer
48 views

GWBASIC File I need to understand the equations behind this code but I cannot interpret it, I can run it

Can someone tell me how to open up this old GWBASIC file. I can run it but what I to know the equations and code behind it. "RANGE ADJUSTMENT PROGRAM"·(‘:‘:‘Ý2… "ENTER RANGE QTY ________ ",QTA! ...
0
votes
0answers
97 views

I want to run my motors connected to PIC16F628A ..? I need PIC BASIC code?

Please, I need help urgently.. I have a PIC16F628A, and I have 2 motors coonnected to pins of that PIC. Pins RB0 and RB1 are connected to right motor. Pins RB2 and RB3 are connected to left motor. ...
0
votes
2answers
70 views

Classifying the BASIC language [closed]

How would you classify BASIC (i.e., Beginner's All-purpose Symbolic Instruction Code)? It is described as a collection of high-level languages, but is that relative to C (which I realize came 8 years ...
0
votes
1answer
140 views

What does the assembly instruction trap do?

"RTFM" A program typically issues a software trap when the program requires servicing by the operating system. The general exception handler for the operating system determines the reason ...
0
votes
0answers
31 views

tool check BASIC syntax

I have source code in proprietary BASIC dialect. Main restructure are available: IF/THEN/ELSE/ENDIF, WHILE/WEND, FOR/NEXT, Internal compiler messages are not very verbose. For example: Error -- ...
0
votes
1answer
114 views

QuickBasic: Better alternative to INKEY$

I have code that looks like this: IF INKEY$ <> "" THEN CALL notitle PLAY "MST170o1e8o0b8o1e8" IF INKEY$ <> "" THEN CALL notitle PLAY "e8e4f#8g4f#8" ...
0
votes
1answer
175 views

Any suggestions about how to implement a BASIC language parser/interpreter?

I've been trying to implement a BASIC language interpreter (in C/C++) but I haven't found any book or (thorough) article which explains the process of parsing the language constructs. Some commands ...
1
vote
2answers
77 views

Rewriting Basic Code without Label

I have some code that uses label, an example of it is below: SUB occupy (x) occupied(x) = 0 FOR i = 1 TO 40 IF armyloc(i) = x THEN occupied(x) = i GOTO holdup ELSE END IF NEXT i holdup: END ...
0
votes
0answers
73 views

Separating decimal value to least & most significant byte

I'm working on some 65802 code (don't ask :P) and I need to separate a 16-bit value into two 8-bit bytes to store it in memory. How would I go about this? EDIT: Also, how would I take two similar ...
1
vote
2answers
267 views

What are the difference between a BASIC GOTO and GOSUB statement

What are the difference between a GOTO and a GOSUB statements in BASIC programming language?
-2
votes
2answers
66 views

Is anyone aware of a VIM colorscheme for BASIC (language)

B.A.S.I.C. I encountered a few thousand lines of code from the 80's I need to edit, and would like to save a couple hours it may take me to roll my own VIM syntax defs file.
0
votes
0answers
66 views

QB64 Output issue

How do I scroll up and see previous displayed lines in the output? I'm using QB64, and had to run a program 1000 times, but I cannot see the starting lines. Actually, I can't see the first 800 lines ...
0
votes
2answers
184 views

Regular expression to match a comma not inside a string literal

In BASIC print statements can look like this: 100 PRINT "Copyright, Adrian McMenamin","maybe" Which should put a tab space between the first statement and the second. I am working on a ...
-9
votes
1answer
215 views

How does one make an operating system in Basic? [closed]

To make any operating system you need crucial bits written in Assembly. My question is, how do you then start making the rest of the OS, once you've got all the fundamental bits down, with Basic or C? ...
0
votes
1answer
492 views

Writing BASIC interpreter in java - loops and ifs

This paper: http://www.codeproject.com/Articles/345888/How-to-write-a-simple-interpreter-in-JavaScript helped me greatly in terms of engineering parsing and write instructions, however it does not ...
0
votes
1answer
54 views

How do to block comments in Liberty Basic?

Each day has its own data, and I need to run some science stuff without using the recent data....basically I need to block comment it out. How is that done?
0
votes
1answer
360 views

WWBasic + SPSS, script to rename value labels

before I start I want to point out that I tagged this question as VBA because I can't actually make a new tag for Winwrap and I've been told that Winwrap is pretty much the same as VBA. I'm working ...
8
votes
3answers
115 views

What typing system does BASIC use?

I've noticed that nowhere I can find can give me a definitive answer to the question above. I first wondered about this when I noticed that you never had to state the type of variable in QBasic when ...
1
vote
1answer
96 views

Getting my head round Java graphics

I am trying to do some very simple and crude graphics stuff with Java (deliberately crude and simple as it emulates a computing environment from 1980/1981). The Java (Groovy in fact) code runs some ...
0
votes
2answers
74 views

Issue with Scanner class

I am using Groovy to build a DSL that will handle BASIC scripts. I have a line like this: 100 INPUT V Which is picked up by a regex which injects some code into the script being executed: def ...
1
vote
4answers
1k views

Easy language to write apps for Android? [closed]

According to this question, it seems like the only way to write apps for Android is Java. Is there really no easier languages, ideally something closer to BASIC or Python? What about Basic4PPC?
0
votes
1answer
269 views

TI-84 Multiple Menu Program

So when you make a menu using the Menu() function, It goes: Title Option 1 Option 2 Option 3 Etc... But almost every menu already on the calculator has multiple titles that you can choose from, then ...
1
vote
1answer
105 views

Why does my BASIC project get an “unexpected <” error?

' Gambas class file ' Math Drill by William Teder. Feel free to use parts of the code, but please give me credit. ' Declare Variables ' Define number of times user has pressed the Give Up button ...
0
votes
1answer
227 views

GAMBAS - Exit Sub in IF statement

I have a checkbox that is supposed to trigger whether or not a button is visible. Below is the code: PUBLIC SUB chkGiveUp_Click() ' Check to see if the Give Up button's visible property is set to ...
0
votes
2answers
129 views

Getting error 31 in BBx (Business Basic)

I am currently trying to transfer a few thousand records out of a MULTIKEYED file to a flat STRING file, that is building a large SQL INSERT statement to take the data off of our servers FILE bases ...
0
votes
1answer
298 views

computing the shortest distance of a maze with the boe-bot in Pbasic

I'm working on a project with a robot called the boe-bot. My goal is to traverse through a maze twice. On the first run, my boe-bot transverses through the maze storing the paths taken in memory. ...
0
votes
2answers
132 views

What is LGT in BASIC?

I'm trying to port a program written in Rocky Mountain BASIC to GWT, and I'm stumped by this statement: 1040 Cfs = 0.75/((LGT(Reyns)-2)^2) 1040 is the line number. Reyns is a Reynolds number; the ...
1
vote
1answer
107 views

Comma at the end of True Basic if statement

I've been working on translating a simulation written in True Basic to C, and eventually into CUDA. Considering I have never worked with True Basic, let alone basic, everything has been going smooth. ...
1
vote
1answer
167 views

TI Nspire BASIC - Extract coefficients from Equation

I intend to write a function in TI-BASIC on my CAS calculator that takes a mathematical expression (a quadratic specifically) as a parameter and 'completes the square'. To do this, I need to compute ...
0
votes
1answer
55 views

Passing variables in Business Basic appears to not be working

The following code calls a program I made that automatically creates an input field with brackets on either side at a certain length. C$ is a standard variable we use in all our programs in the ...
1
vote
0answers
375 views

Looking for a TI-89 or TI-nSpire : 2D Matrix Convolution program [closed]

Is there any TI-89 or TI-nSpire calculator 2D Matrix (circular or not) Convolution program ? If it is not the case : how to implement it in TI-BASIC
0
votes
7answers
236 views

Why does BASIC (and related languages) use `then` rather than `than` in conditionals?

Reference: http://theoatmeal.com/comics/misspelling then refers to an expression regarding time. E.g. "First I went to the store, then I bought milk." than refers to a comparison. E.g. "I know the ...
0
votes
2answers
313 views

Reverse engineering a QuickBASIC 3.0 program

I have a program (I own the rights) written in QuickBASIC 3.0, though I do not have anymore the source code. Anyone know a decompiler that I can use to see what the program does? Basically it gets ...

1 2