컴포넌트 기본사용법 - 1강
17.3.28 컴포넌트1교재 1~50페이지 내용 □ 컴포넌트 사용법 1. LabelLabel.Caption := '변경할 글자'; 2. ButtonButton.Enable := False; // 버튼 사용, 미사용 3. EditEdit.Text := '변경할 글자';Edit.Clear; // 글자 모두 삭제 4. 변수 a,b,c 만들기 - integer, real, string 5. 사칙연산unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Edit1: TEdit; Edit2: TEdit; Bu..
2017. 3. 29.