Chtěl jsem si stáhnout tento program ve kterém jsou uložené zdroje a ty zdroje modifikovat a přeložit. Je to ale psáno v jazyku který neovládám. Nejdříve jsem hledal IDE ve kterém bych to otevřel, našel jsem Windows Free Pascal (IDE v 1.0). Otevřel jsem soubor HEBRAK.DPR a zkusil jsem zkompilovat kod uvnitr:
(*Windows Free Pascal is developed by dr J.Szymanda under the GPL License*)
(*************************************************************************)
program Hebrak;
{
Uc_heb - Hebrak 2.31
(c) 2002 Bubenicci - hebrak@yahoo.com
http://www.geocities.com/hebrak/
License: GNU GENERAL PUBLIC LICENSE
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
}
uses
Forms,
Hebrew1 in 'HEBREW1.PAS' {Form1},
Hebrew2 in 'HEBREW2.PAS' {Form2},
Hebrew3 in 'HEBREW3.PAS' {AboutBox},
Testfnt in 'TESTFNT.PAS' {Ftestfont},
antiwin in 'ANTIWIN.PAS',
Otviram in 'OTVIRAM.PAS' {FOtviram},
Gem1 in 'GEM1.PAS' {Fgem};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TFtestfont, Ftestfont);
Application.CreateForm(TFOtviram, FOtviram);
Application.CreateForm(TFgem, Fgem);
Application.Run;
end.
A dostal jsem chybu:
Nemohu najít Forms které používá Hebrak.
Co musím udělat? Schází mi nějaká knihovna? Mimo adresář kde leží Hebrak.dpr je soubor uc_heb1.iss a nevím co to je jestli to je knihovna a musím to propojit?