How do you use more than one form? When I try it seems to not work right. I just use the standard:
Form1 := TForm1.Create(Application);
with Form1 do try
ShowModal;
finally
FreeAndNil(Form1);
end;
Thanks!
-Brent
How do you use more than one form? When I try it seems to not work right. I just use the standard:
Hi,
Hi,
When I create a dialog using the code above it works correctly the first time. The next time, the dialog opens but it reacts very slowly. What is the proper code to create dialogs and release them?
Hi,
It has controls like a textfield
Hi,