Pascal for Visual Basic users

From Lazarus wiki
Jump to navigationJump to search

Template:Pascal for VisualBasic users

Overview

This wiki page is created to help you switch from VisualBasic to Lazarus (FreePascal). It is not meant to convince that Lazarus is better than VB or vice versa. Anyway, these two languages have a lot of differences. Since in the beginning you would face problems with the things, that Lazarus cannot do and VB can, more attention is given to them.

Starting and ending statements

Pascal has no separate start and end statements for functions, procedures, loops, etc. It has only start and end. This problem can be easily solved, by manually adding a comment on end statements. Example:

for i:= 0 to 100 do
begin
   ...
end; //for i

Variables

Declaring variables

That is why *all* variables have to be declared in FreePascal. There is another restriction- variables are declared only in a special section. Declaration in the code is not possible. Example:

procedure VarDecl;
var
  MyVar1: string;
begin
  writeln ('Print something')
  MyVar1: string; //This is not possible!!
  writeln ('Print something else')
end; //VarDecl

Types of variables

Besides the variables known in VB, FreePascal supports unsigned integers. You should pay special attention not to mix them with signed integers.

Loops

FreePascal has three kind of loops.

for... do...

while... do

repeat... until

For... do...

This is quite similar to the For.. Next loop in VB, but not as much powerful, due to the following limitations: 1. A counter cannot be float number. 2. There is no Step property. To decrease the number of the counter, DOWNTO shall be used instead of TO. Example

procedure ForLoop;
var
  i: integer;
begin
  for i:=50 downto 0 do
  begin
     ...
  end. //for i
end. //func

3. Value of the counter cannot be changed inside the loop.

Using default parameters in functions and procedures

In Pascal it is possible to use automatically the default values of functions and procedures, only if they are not followed by any other parameters.

Example: If a procedure is declared the following way

procedure SampleProc(parm1: integer; parm2: string= 'something'; parm3:Boolean= True);
begin
end. /proc

it is not possible to call it as in VB and

  SampleProc(5,,False);

will result in an error.

It can only be called like this:

  SampleProc(5,'something',False);

The next usage is also valid in Pascal:

  SampleProc(5,'nothing');