안녕하세요. 아래의 코드처럼 했는데요...
if Edit1.Text = ' ' then
begin
showmessage('인증할 ID를 입력하여 주세요!!');
end
else if(iRet <> 0) then
begin
showmessage(Fpocx.szErrorMsg);
end
{0은 True이면 Form을 보여주고}
else if (iRet = 0) then
begin
Secuday_Fm.Show;
end
{1은 False이면 메시지 출력되고 폼은 열리지 않음}
else if(iRet = 1) then
begin
showmessage('Authentication Failed');
위의 경우의 조건식에서 둘다 폼이 열려 버리는 군요..
어떻게 처리를 해야하는지 방법좀 알려주시면 무지 감사하겠습니다.
if edit1.Text = '' then
ShowMessage('인증할 ID를 입력하여 주세요')
else
begin
if iret = 0 then
Secuday_Fm.Show
else
if iret = 1 then
showmessage('Authentication Failed')
else
showmessage(Fpocx.szErrorMsg);
end;
이렇게 하면될거같은데요..