...Rob...
--
Jeff Overcash (TeamB)
(Please do not email me directly unless asked. Thank You)
If there is somebody up there could they throw me down a line. Just a
little helping hand just a little understanding. Just some answers to the
questions that surround me now. If there's somebody up there could
they throw me down a line. (Fish)
--
...Rob...
This will work as long as your forms are owned by the application..
procedure ShowMyForm(FormName: string);
var
f: TForm;
begin
f := TForm(Application.FindComponent(FormName));
if f = nil then
ShowMessage('Could not find Form ' + FormName)
else
f.Show;
end;
--
David Reed
Diamond Software Group, Inc
Oasis Rep Software, Inc
www.diamondsg.com
www.oasisrep.com
...Rob...
handle creating the form?
David Reed wrote: