Hello.
Delphi 11.2
I have 2 "errors" that show in this page (see errors.jpg).
Yet the project builds and runs ok.
I can not decipher the nature of the (false alarm?) errors.
One is this (see error2.jpg)
The declaration of nxcheck is this:
type
Tnxcheck = class(TForm)
nxSimpleSession: TnxSimpleSession;
nxRemoteServerInfoPlugin: TnxRemoteServerInfoPlugin;
l1: TListBox;
nxsock: TnxWinsockTransport;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
function ison(s: string): boolean;
end;
var
nxcheck: Tnxcheck;
implementation
.....
Why create(nil) yields "too many actua parameters"? I have dozenns of create(Nil) in =other places, with no error .
The other is shown in error1.jpg.
I can't figure what operator is supposed to be missing here.
Any help, please?