그러나 저에게는 너무 어려워요 ㅠㅠ
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
SG.Cells[0,0]:='번호';
SG.Cells[1,0]:='학번';
SG.Cells[2,0]:='이름';
SG.Cells[3,0]:='전화';
SG.Cells[4,0]:='주소';
end;
procedure TForm1.Button1Click(Sender: TObject);
//전역변수 필요 몇번 저장했는지 아는 변수 필요
begin
cnt:= 1;
sg.Cells[cnt,cnt]:='inttostr(cnt-1)';
sg.Cells[cnt+1,cnt]:='edit2.text';
sg.Cells[cnt+2,cnt]:='inttostr(edit3.Text)';
sg.Cells[cnt+3,cnt]:='edit4.Text';
sg.Cells[cnt+4,cnt] :='inttostr(edit1.text)';
inc(cnt);
end;
end.
이거 프로그램좀 짜주세요~~~ ㅜㅜ
입력누르면 계속 밑으로 쓸수있게해주세요~~ㅠㅠ
아마도 회원분들 답을 안해주실 듯 합니다.
숙제는 직접하시고 직접하셔야 공부가 됩니다. ㅡ_ㅡ;;
참고로 한말씀 드리면
procedure TForm1.Button1Click(Sender: TObject);
//전역변수 필요 몇번 저장했는지 아는 변수 필요
begin
cnt:= 1;
이부분에서 버튼을 누를때 마다 cnt 가 1로 되니
이부분을 다른 곳에서 초기화 해주시고 버튼 이벤트에서 빼시면 잘될 겁니다.
그럼 수고 하세요.