我没有用过它,这里有几个简单的问题请教:
    1、我能不能将控件最上面的 A。B。C的字样改成我的内容?怎么改?
    2、怎么样将焦点移到指定的位置?
    3、怎样设定指定单元格不可修改?
    4、怎样提取指定单元格的文本?
    5、怎样提取我输入了多少行数据?现在我要用的大概就这些,不知道能不能得到答案。分不够的话请说一声。我现在有4K多分。

解决方案 »

  1.   

    大家有这样的源程序吗?如果可以的话,请发一份给我:[email protected] 并留下这里的ID,我会给你加分的......
    waiting....6号中午散分
      

  2.   

    TO : zxfsdbj(飞飞猫) 
    我收到了你的一封信,但没有内容.
    我的新浪邮箱是[email protected]
      

  3.   

    unit Unit1;interfaceuses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, AxCtrls, OleCtrls, VCF1;type
      TForm1 = class(TForm)
        F1Book1: TF1Book;
        Button1: TButton;
        procedure Button1Click(Sender: TObject);
      private
        { Private declarations }
      public
        { Public declarations }
      end;var
      Form1: TForm1;implementation{$R *.dfm}procedure TForm1.Button1Click(Sender: TObject);
    begin
    F1Book1.RowText[1]:='1111';
    F1Book1.ColText[1]:='2222';
    F1Book1.SetActiveCell(3,3);
    end;end.