Quote:
> I have written a script to create an excel object but
> when I run it, it immediately disappears. The only way i
> can keep it visible and active is to put it "to sleep"
> for however long I specify. Is there a way to keep is
> always open?
Dim xlsApp
Set xlsApp = CreateObject("Excel.Application")
xlsApp.Visible = True
xlsApp.UserControl = True
Set xlsApp = Nothing
--
Michael Harris
Microsoft.MVP.Scripting
Seattle WA US
--