Sorry if my question is silly!
I'm using Delphi XE4 and now I'm working on IdTelnet
. But I got a problem with OnDataAvailable
event. Take a look at this picture:
So I cannot work with OnDataAvailable
Event.
Is this because of Delphi XE4? And How can I fix it?
Thanks
TIdBytes(\s*)=
, which searchesTIdBytes
followed by any count of word separator (like space and tab) and=
symbol (it doesn't count with line breaks between type name and=
symbol, but it's enough to find any type definition in Delphi source). Even though should be enough to search forTypeToFind =
without RegEx. – Eddo