var
Found: Boolean;
Index: Integer;
begin
Found := False;
for Index := 0 to Screen.FormCount - 1 do
if Screen.Forms[Index] is TTestFrm then
Found := True;
if not Found then
TestFrm := TTestFrm.Create(Self);
TestFrm.Show;
end;
TestFrm := TTestFrm.Create(Self); TestFrm.Show; 이렇게 해서요... 버튼을 눌러 창을 띄웠는데.. 그 버튼을 또 눌렀을 경우 그창이 안뜨게 하고픈데요.. 그러니까 한번 이상 창을 띄우고 싶지 않거든요... 그창이 없어지기 전엔 창을 한...
최용일
•
2002.05.08 02:46
안녕하세요. 최용일입니다.
방법이야 수없이 많이 있지만... 아래와 같이 해보세요...
var
&n...
방법이야 수없이 많이 있지만... 아래와 같이 해보세요...
var
Found: Boolean;
Index: Integer;
begin
Found := False;
for Index := 0 to Screen.FormCount - 1 do
if Screen.Forms[Index] is TTestFrm then
Found := True;
if not Found then
TestFrm := TTestFrm.Create(Self);
TestFrm.Show;
end;
^^ 항상 즐코하세요...