Difference between revisions of "Documentation/BASIC Guide/Program Overview"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 73: Line 73:
 
  5Surnames    ' Incorrect (the first character must not be a number)
 
  5Surnames    ' Incorrect (the first character must not be a number)
 
  First,Name  ' Incorrect (commas and full stops are not permitted)
 
  First,Name  ' Incorrect (commas and full stops are not permitted)
 +
 +
{{PDL1}}

Revision as of 10:11, 26 September 2007


An Overview of a Apache OpenOffice Basic Program

Apache OpenOffice Basic is an interpreter language. Unlike C++ or Turbo Pascal, the Apache OpenOffice compiler does not create executable or self-extracting files that are capable of running automatically. Instead, you can execute a Apache OpenOffice Basic program by pressing a button. The code is first checked for obvious errors and then executed line by line.

Program Lines

The Basic interpreter's line-oriented execution produces one of the key differences between Basic and other programming languages. Whereas the position of hard line breaks in the source code of Java, C++, or Delphi programs is irrelevant, each line in a Basic program forms a self-contained unit. Function calls, mathematical expressions, and other linguistic elements, such as function and loop headers, must be completed on the same line that they begin on.

If there is not enough space, or if this results in long lines, then several lines can be linked together by adding underscores _. The following example shows how four lines of a mathematical expression can be linked:

LongExpression = (Expression1 * Expression2) + _
(Expression3 * Expression4) + _ 
(Expression5 * Expression6) + _
(Expression7 * Expression8)

Template:Documentation/Note

In addition to linking individual lines, Apache OpenOffice Basic, you can use colons to divide one line into several sections so that there is enough space for several expressions. The assignments

a = 1 
a = a + 1 
a = a + 1 

can be written as follows:

a = 1  :  a = a + 1  :  a = a + 1

Comments

In addition to the program code to be executed, a Apache OpenOffice Basic program can also contain comments that explain the individual parts of the program and provide important information that can be helpful at a later point.

Apache OpenOffice Basic provides two methods for inserting comments in the program code:

  • All characters that follow an apostrophe are treated as comments:
Dim A    ' This is a comment for variable A
  • The keyword Rem, followed by the comment:
Rem This comment is introduced by the keyword Rem. 

A comment usually includes all characters up to the end of the line. Apache OpenOffice Basic then interprets the following line as a regular instruction again. If comments cover several lines, each line must be identified as a comment:

Dim B     ' This comment for variable B is relatively long
          ' and stretches over several lines. The
          ' comment character must therefore be repeated 
          ' in each line.

Markers

A Apache OpenOffice Basic program can contain dozens, hundreds, or even thousands of markers, which are names for variables, constants, functions, and so on. When you select a name for a marker, the following rules apply:

  • Markers can only contain Latin letters, numbers, and underscores (_).
  • The first character of a marker must be a letter or an underscore.
  • Markers cannot contain special characters, such as ä â î ß.
  • The maximum length of a marker is 255 characters.
  • No distinction is made between uppercase and lowercase characters. The OneTestVariable marker, for example, defines the same variable as onetestVariable and ONETESTVARIABLE.
    There is, however, one exception to this rule: a distinction is made between uppercase and lowercase characters for UNO-API constants. More information about UNO is presented in Introduction to the Apache OpenOffice API.

Template:Documentation/Note

Here are a few examples of correct and incorrect markers:

Surname      ' Correct 
Surname5     ' Correct (number 5 is not the first digit)
First Name   ' Incorrect (spaces are not permitted)
DéjàVu       ' Incorrect (letters such as é, à are not permitted)
5Surnames    ' Incorrect (the first character must not be a number)
First,Name   ' Incorrect (commas and full stops are not permitted)
Content on this page is licensed under the Public Documentation License (PDL).
Personal tools