cyclicalevents Master Cheater
Reputation: 0
Joined: 08 Jan 2008 Posts: 469
|
Posted: Fri Mar 21, 2008 2:30 am Post subject: Delphi - Isolating an Expect end of line error. |
|
|
I'm working on my own UCE and was trying to compile MainUnit.pas, but it gives me a "expected end of line (;) but an identifier found" error. The only part that I changed of it was this
| Code: | if messagedlg('This is the first time Cyclical Engine has been executed. Do you want to associate files with the .CT extention with Cyclical Engine?',mtConfirmation,[mbyes,mbno],0)=mryes then
associate('.CT');
if messagedlg('Do you want to try out the tutorial?',mtconfirmation,[mbyes,mbno],0)=mryes then
shellexecute(0,'open','Project1.exe','','',sw_show);
end; |
It's just some changed text so I don't think the problem would be here. Is there a way to make Delphi identify where the problem is? I just get the error box but not that little box that usually comes up when you make other kinds of errors.
|
|