Topic: Introdunction to script (Object Pascal)

Here you can find some articles about Pascal syntax:
http://www.marcocantu.com/epascal/
http://101.lv/learn/delphi/
http://www.delphibasics.co.uk/
http://delphi.about.com/od/beginners/a/dbeginner6.htm
http://www.delphibasics.co.uk/Article.asp?Name=FirstPgm
https://blog.udemy.com/pascal-programming/

Dmitry.

Re: Introdunction to script (Object Pascal)

thank you so much for bringing tuts for us beginners.  smile

Re: Introdunction to script (Object Pascal)

http://andaveloper.altervista.org/home/pascal.html

Domebil

Re: Introdunction to script (Object Pascal)

Can someone tell me why this procedure dosn't work:

procedure FrmSZone_EdtName_OnClick (Sender: TObject);
begin
      FrmSZone.EdtName := FrmSZone.EdtELN;
end;

Re: Introdunction to script (Object Pascal)

Try it like this
procedure FrmSZone_EdtName_OnClick (Sender: TObject);
begin
      FrmSZone.EdtName.text := FrmSZone.EdtELN.text;
end;
(or try FrmSZone.EdtName.value depending on the contents of the field)
Derek.