为什么D6,D7没有简单函数的帮助呢?如:IntToStr...

解决方案 »

  1.   

    有啊,DELPHI的帮助就有,这事地球人都知道.
      

  2.   

    Converts an integer to a string.UnitSysUtilsCategorynumeric formatting routinesfunction IntToStr(Value: Integer): string; overload;
    function IntToStr(Value: Int64): string; overload;DescriptionIntToStr converts an integer into a string containing the decimal representation of that number.这些全都有,上面就是从 D6 帮助上 COPY 下来的。
      

  3.   

    有啊,DELPHI的帮助就有
    IntToStr ExampleThe following example uses two edit controls, a button, and a label on a form. When the button is clicked, the integers in the edit controls are multiplied together and the result is displayed in the label.procedure TForm1.Button1Click(Sender: TObject);begin
      try
        Label1.Caption := IntToStr(StrToInt(Edit1.Text) * StrToInt(Edit2.Text));
      except
        ShowMessage('You must specify integer values. Please try again.');
      end;
    end;這個就是它的例子