Welcome, Guest
Username: Password: Remember me
General discussions, feature requests for CodeTyphon Project and discussions that don't fit in any of the other specific CodeTyphon forum categories.
  • Page:
  • 1

TOPIC:

not work code 3 years 1 month ago #15619

  • Mr Game Bear encrypt
  • Mr Game Bear encrypt's Avatar Topic Author
  • Offline
  • New Member
  • New Member
  • Posts: 6
  • Thank you received: 0
i try code



procedure abc;

begin
    Edit1.caption:='word hey';
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  abc;
end;
      


 

Please Log in or Create an account to join the conversation.

not work code 3 years 1 month ago #15620

  • Matis A.
  • Matis A.'s Avatar
  • Offline
  • Moderator
  • Moderator
  • Posts: 1047
  • Thank you received: 145
Try

procedure abc;
begin
   Form1.Edit1.caption:='word hey'; //<<====
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  abc;
end;
PilotLogic Core Programmer

Please Log in or Create an account to join the conversation.

  • Page:
  • 1