vote up 0 vote down star

I have the following program which very nearly works but is producing the following error when I try and compile, I have no idea how to fix it! any ideas?

Forms, mainform in 'mainform.pas'...

"unit1.pas(9): , or ; expected but 'IN' found; "project1 could not compile unit1.pas

    unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,
  Dialogs, LibXmlParser, LibXmlComps, StdCtrls,
  Forms,
  mainform in 'mainform.pas'
  mapimail in 'mapimail.pas';

type
  TXMLRule = Record
    alert, desc, act:string;
  end;

  TForm1 = class(TForm)
    Button1: TButton;
    EasyXmlScanner1: TEasyXmlScanner;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  Parser : TXmlParser;
  MyXMLRules:Array[1..10] of TXMLRule;
  i         :1..10;

implementation
{$R *.dfm}

procedure ProcessXML();

begin
  Parser := TXmlParser.Create;
  Parser.Normalize := TRUE;
  Parser.LoadFromFile ('c:\parser.xml');
  Parser.StartScan;

  while Parser.Scan do
    case Parser.CurPartType of
     ptStartTag,
     ptEmptyTag :
      begin

      end;

    ptContent  :
      begin
        if Parser.CurName = ('<alert>') then MyXMLRules[1].alert := Parser.CurContent;
        if Parser.CurName = ('<desc>') then MyXMLRules[1].desc := Parser.CurContent;
        if Parser.CurName = ('<action>') then MyXMLRules[1].act := Parser.Curcontent;
      end;
    end;
  Parser.Free;
end;

procedure EmailAlert();
begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end;

procedure NoiseAlert();
begin
end;

procedure TForm1.Button1Click(Sender: TObject);
var
f:textFile;
data:string;
begin
   ProcessXML();

    AssignFile(f, 'c:\nmap.txt');
    reset(f);
    repeat
      readln(f, data);
      if (pos(MyXMLRules[1].alert, data)) <> 0 then

        begin
           if MyXMLRules[1].act
           = ('Email') then
                      begin
                        EmailAlert
                      end;
           if MyXMLRules[1].act
           = ('Beep') then
                      begin
                        NoiseAlert
                      end;
        end;
      until EOF(f);
end;

end.
flag

3 Answers

vote up 1 vote down

You're mixing unit code and project code.

In Delphi (and freepascal), a project file (.dpr) allows you to include custom source files, usually your units, by specifying a OS file. This is used to notify the compiler not to look for a pre-compiled unit.

project MyApp;

uses
  forms,
  unit1 in 'unit1.pas';

Where as a unit, as you've provided, you can not do this.

Remove the IN and the quoted strings and you should be fine as long as you clean up the rest of the errors in the code.

link|flag
vote up 2 vote down

According to Delphi Basics the "in" is only applicable to programs and libraries and not units.

link|flag
of course thanks. do you know what can be used instead? – lazers pewpewpew Mar 25 at 15:58
Just remove the "in filename" part and see if that works? – RobS Mar 25 at 16:01
Otherwise extend the search path, either for Delphi or only the project, or add the mainform.pas to the dpr. – Ralph Rickenbach Mar 25 at 16:02
Im not using a .dpr its a form that compiles when I click the button – lazers pewpewpew Mar 25 at 16:06
ignore that moronic statement actually.. – lazers pewpewpew Mar 25 at 16:07
vote up 4 vote down

You're missing a comma at the end of line 9 (the line with "mainform in 'mainform.pas'").

link|flag
That's true but I don't think the parser has got that far yet. – RobS Mar 25 at 15:56
Yeah, you're probably right. I haven't touched Pascal in over 6 years so I'm a bit rusty. ;) – Björn Mar 25 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.