cimnik2999
Programmer
Hey. im a new to delphi, and i would like to know how i can include code in a unit that i wrote in another unit in the project. I tried adding the unit's name under uses, but it doesn;t see to work
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
program MyProgram;
uses
Forms,
unit1 in 'unit1.pas' {Form1},
yourUtils in 'yourUtils.pas',
...
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.