안녕하세요..
getText event에다가
if Text = '남' then Sender.Value := '1';
if Text = '여' then Sender.Value := '2';
setText event에는
if Sender.Value = '1' then Text := '남';
if Sender.Value = '2' then Text := '여';
이렇게 기술했습니다..
그런데 다른 프로그램에서는 잘 되었었는데 새로운 프로그램에서는 에러가 나네요..
그것도 getText에서는 에러가 안나구 setText event에서만
'left side cannot be assigned to' 라고 컴파일시 에러가 나네요..
Table과도 상관이 있는건지 왜 에러가 나는지 모르겠네요..
여기서 Text가 상수 이군여..
상수는 못 바꾸져?