Get more info about an IP address or domain name, such as organization, abuse contacts and geolocation.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Hope it helps!
VSF
www.victory.hpg.com.br
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure CreateFile(const aFileName: string);
var
F: TextFile;
begin
AssignFile(F, aFileName);
Rewrite(F);
CloseFile(F);
end;
procedure TForm1.Button1Click(Sender
begin
CreateFile('c:\abc.dat');
end;
end.