Конференция "KOL" » Как присвоить длину поля EditBox переменной? [Delphi, Windows]
 
  • Стас (27.05.08 18:17) [0]
    Пробую присвоить перемнной длину поля EditBox
    procedure TForm1.Button1Click(Sender: PObj);
    var len, res: integer; usedit: string;
    begin
    usedit:=EditBox1.Text;
    len:=StrLen(usedit); // ошибка Incompatible types: "String" and "PChar"
    form:=((len*2)*(len*2))*2;
    EditBox2.Text:=Int2Str(form);
    end;


    Что я делаю не так?
  • Стас (27.05.08 18:21) [1]
    Пардон, вот так у мен...

    Пробую присвоить перемнной длину поля EditBox
    procedure TForm1.Button1Click(Sender: PObj);
    var len, res: integer; usedit: string;
    begin
    usedit:=EditBox1.Text;
    len:=StrLen(usedit); // ошибка Incompatible types: "String" and "PChar"
    RES:=((len*2)*(len*2))*2;
    EditBox2.Text:=Int2Str(RES);
    end;
    Что я делаю не так?
  • Стас (27.05.08 18:23) [2]
    Пардон, вот так у мен...

    Пробую присвоить перемнной длину поля EditBox
    procedure TForm1.Button1Click(Sender: PObj);
    var len, res: integer; usedit: string;
    begin
    usedit:=EditBox1.Text;
    len:=StrLen(usedit); // ошибка Incompatible types: "String" and "PChar"
    RES:=((len*2)*(len*2))*2;
    EditBox2.Text:=Int2Str(RES);
    end;


    Что я делаю не так?
  • Дмитрий К © (27.05.08 19:05) [3]
    Length(usedit)
 
Конференция "KOL" » Как присвоить длину поля EditBox переменной? [Delphi, Windows]
Есть новые Нет новых   [134431   +14][b:0][p:0.001]