FriendInfo.pas
上传用户:hbtcygglw
上传日期:2007-01-07
资源大小:281k
文件大小:1k
源码类别:

其他

开发平台:

Delphi

  1. unit FriendInfo;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   Grids, StdCtrls;
  6. type
  7.   TFriendInfoDlg = class(TForm)
  8.     InfoGrid: TStringGrid;
  9.     Button1: TButton;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.     class procedure Execute;
  15.   end;
  16. implementation
  17. uses info;
  18. {$R *.DFM}
  19. { TFriendInfoDlg }
  20. class procedure TFriendInfoDlg.Execute;
  21. var
  22. i:Integer;
  23. begin
  24. with TFriendInfoDlg.Create(Application) do
  25.     begin
  26.     InfoGrid.RowCount:=nInfoCnt;
  27.     for i:=0 to nInfoCnt-1 do
  28.         begin
  29.         InfoGrid.Cells[0,i]:=IntToStr(i);
  30.         InfoGrid.Cells[1,i]:=
  31.         end;
  32.     Free;
  33.     end;
  34. end;
  35. end.