Pascal for Visual Basic users

From Lazarus wiki
Revision as of 09:34, 13 February 2015 by Paskal (talk | contribs) (→‎Loops)
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.