I'm using Delphi 4, and I want to create a standard non blocking socket with out the clutter of Indy code (Pv4 and Pv6). and i want to get the computers IP address and be able to ping has any one done this. Can I do it with Indy 10 or Indy 9. And has any one made code up to do any of these things and tested it please.
1
There are 1 best solutions below
Related Questions in DELPHI
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- How to catch WM_DEVICECHANGE in a control other than TForm?
- show information with Rolling / moving messages delphi xe7
- What is the different between "Console target" and "GUI target" in DCC32 option?
- How to add new online ressources to RAD Studio help system
- C# and Delphi code have different behaviour when importing unmanaged dll
- Loop through records on a cxgrid and update a field/column
- Delphi 7 - Save to a Specific .INI Files Name
- TImagelist for large images
- how to modify a function so it returns an array of strings
- Checking for internet connection in runtime
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- fetch data from web service to dataset in Delphi
- Load candlestick data from file
- Infinite loop in parsing a string using pointer math
Related Questions in INDY
- working with IdHTTPProxyServer1
- Delphi download multithreading
- Delphi Indy HTTP.GET high cpu usage
- Threads: Send data to a specific active thread
- Indy TCP client in thread
- Delphi XE5 Isapi on Windows 2003 R2 server
- Indy 10 raising an unwanted exception
- Delphi Bug in Indy FTP List method?
- How to use capabilities property of TidIMAP4?
- TCameraComponent and TVideoCaptureDevice do not initialize in Win32
- ¿How can I send and recieve strings from tidtcpclient and tidtcpserver and to create a chat?
- Delphi - Send stream using IdCmdTCPServer to a Client
- Need to send data from TServersocket to TidTcpClient
- Delphi: Indy TIdTCPClient Reading XML
- Delphi 7 idHTTP JSON Data Null Result
Related Questions in INDY10
- Indy 10 raising an unwanted exception
- Why has the textfile's encoding changed from UTF-8 to ANSI (and how to solve this)?
- Exception loading ssleay32 with Indy10 with HTTP Server
- Change sender when sending email with TIdSmtp
- How to use capabilities property of TidIMAP4?
- Write the Indy 10 of Delphi Codes's to C ++ Builder's Indy 10
- Are there version options for Indy SNMP traps?
- Missing bytes on IdUDPServer.OnRead event in buffer array - Delphi XE3
- Testing Somesite CRLF Bugs Hole Using Indy IdMappedPortTCP
- Installing Indy - which folders should be added to Delphi's Library list?
- Delphi - Authorization TIdHttp fails over HTTP proxy
- HTTP client error 403
- delphi 2006 indy https post time out
- How to obtain Indy version of RadStudio XE5 without installing XE5
- IdHTTP->ConnectTimeout works in Windows 7, does not work on XP
Related Questions in DELPHI-4
- Error in printing a base64 encoded print command using Thermal Printer
- Program Errors when trying to change forms
- Loading Data into 420 Buttons or a simular object
- Program stays running after exit
- Programmatically adding columns to a TdxDBGrid (Expressquantumgrid by Devexpress)
- Delphi Using Indy 10
- How to add tasks entry to taskbar with Delphi 4?
- How to define IInterface type for Delphi 4
- Looking for Delphi 4 professional/Quickreport
- Obtain YYYYMM String from Now in Delphi 4
- How do I free the contents of a TList?
- Delphi 4 error:- file not found:'htmlcons.inc'
- what does underscore mean in Delphi4
- Query optimization in Delphi 4
- Overcome TImage Control limitations
Related Questions in INDY-9
- TIdHTTPServer Getting content-length when receiving the PostStream
- Write the Indy 10 of Delphi Codes's to C ++ Builder's Indy 10
- Delphi 2007 with Indy 9
- Indy9 Get Raw Email header?
- Reading image data from client using Indy command handler
- How to use IdFTP inside a DLL Delphi
- Delphi Indy IdUdpClient read operation, No data returned
- Adding attachments to E-mail bound for Evernote E-mail address defeats HTML content type declaration with Indy TIdSMTP component
- Indy TCP - Read data in a loop
- C++ Builder - Indy - Receiving certified emails
- How to use component from the old indy9 package
- Indy sending file and close open handle(s)
- Indy 9 + Delphi 2007 latest SSL Libraries available?
- Delphi - Why udp data packet is different?
- Handle PUT and DELETE requests in TIdHTTPServer in Delphi 7
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Indy officially stopped supporting Delphi 4 a long time ago. Delphi 5 is the earliest version still supported. Delphi has its own socket classes - TClientSocket and TServerSocket - which can operate in both blocking and non-blocking modes. Indy operates strictly in blocking mode only.
Without using Indy, you can get the machine's IP(s) using either the WinSock API's gethostname and gethostbyname functions, or the Win32 API's GetAdapterAddresses or related functions, and use the Win32 API IcmpSendEcho function to ping.