win7 32bit コード上の DELPHI XE7:
procedure TForm1.IdMappedPortTCP1Execute(AContext: TIdContext);
begin
if (pos('CONNECT',AContext)<>0) or (pos('GET',AContext)<>0) or (pos('POST',AContext)<>0) or (pos('HEAD',AContext)<>0)
then
(....)
sleep(100);
end;
エラー:
[dcc32 Error] Unit1.pas(49): E2250 There is no overloaded version of 'Pos' that can be called with these arguments
そのコードを修正する方法を教えてください
前もって感謝します