if edtLocalIP.text:='' then <---이부분에서 에러가 납니다......
begin
ShowMessage('LOCAL IP를 확인하여 주세요...');
lbtxtshow.Items.Append('IP를 설정하시기 바랍니다.');
end;
[Error] HServer.pas(113): Type of expression must be BOOLEAN
에러메세지는 이렇게 뜨고요........
edtlocalip 에디트 박스의 텍스트가 비어있으면 메시지를 표시하려고 하는데...
위와같이 에러가 나네요....
뭐가 문제인지 아시는 분들은 부탁좀 드리겠습니다.
if edtLocalIP.text:='' then
if edtLocalIP.text ='' then 이게 아닐지요.