i have developed the following code;
-------------------

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 1/19/2005 by femig
'
'
Application.ScreenUpdating = False ' turn off the screen updating
Application.OnTime TimeValue("11:22:00"), "Macro1"
Range("B45:O47").Select
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
Application.CutCopyMode = False
If Dir("C:\xls_data\copy.xls") <> "" Then
' the file exists, returns "" (empty string) if the file doesn't exist.
Kill "C:\xls_data\copy.xls"
Else
ActiveWorkbook.SaveAs Filename:="C:\xls_data\copy.xls", FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False
End If
End Sub

----------------------------------

when i run thid macro i find that the file "copy.xls" is opened on my pc.
.i dont want this..
i simply want to go to windows explorer and see the file in the folder xls_data.
how can i do this?
thanks