⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 friendinfo.pas

📁 OICQ黑客工具。可以查看对方IP地址
💻 PAS
字号:
unit FriendInfo;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Grids, StdCtrls;

type
  TFriendInfoDlg = class(TForm)
    InfoGrid: TStringGrid;
    Button1: TButton;
  private
    { Private declarations }
  public
    { Public declarations }
    class procedure Execute;
  end;
implementation
uses info;
{$R *.DFM}

{ TFriendInfoDlg }

class procedure TFriendInfoDlg.Execute;
var
i:Integer;
begin
with TFriendInfoDlg.Create(Application) do
    begin
    InfoGrid.RowCount:=nInfoCnt;
    for i:=0 to nInfoCnt-1 do
        begin
        InfoGrid.Cells[0,i]:=IntToStr(i);
        InfoGrid.Cells[1,i]:=
        end;
    Free;
    end;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -