0

What's equivalent of NetworkInterface in Delphi, where i can build a program like Network-Bandwidth-Meter ?

There some way to use this class on Delphi?

FLASHCODER
  • 1
  • 7
  • 24

1 Answers1

2

If you look at the source code for the NetworkInterface class, you will see that internally it gets its information from the GetAdaptersAddresses() function, which you can call directly in Delphi code.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770