L
lothario
Hi,
I have used the following VBA code to save selected ("a1:L45") data to
a csv file.
'---------------------------------
Dim Sh As Worksheet
Set Sh = ActiveSheet
Workbooks.Add Template:=xlWBATWorksheet
Sh.Range("a1:L45").Copy Destination:= _
ActiveWorkbook.Worksheets(1).Range("A1")
ActiveWorkbook.SaveAs Filename:="C:\files\vtew\1\uimw_at_" & _
Format(Now, "yyyy_mm_dd_hh_mm_ss") & ".csv", _
FileFormat:=xlCSV
ActiveWorkbook.Close SaveChanges:=False
'---------------------------------
I would like to ensure that after the file is saved,
the attributes of the file are changed such that:
1. It becomes READ-ONLY.
2. It cannot be deleted.
Please show me the VBA code that I can incorporate to the above to
accomplish this.
Thanks,
Luther
I have used the following VBA code to save selected ("a1:L45") data to
a csv file.
'---------------------------------
Dim Sh As Worksheet
Set Sh = ActiveSheet
Workbooks.Add Template:=xlWBATWorksheet
Sh.Range("a1:L45").Copy Destination:= _
ActiveWorkbook.Worksheets(1).Range("A1")
ActiveWorkbook.SaveAs Filename:="C:\files\vtew\1\uimw_at_" & _
Format(Now, "yyyy_mm_dd_hh_mm_ss") & ".csv", _
FileFormat:=xlCSV
ActiveWorkbook.Close SaveChanges:=False
'---------------------------------
I would like to ensure that after the file is saved,
the attributes of the file are changed such that:
1. It becomes READ-ONLY.
2. It cannot be deleted.
Please show me the VBA code that I can incorporate to the above to
accomplish this.
Thanks,
Luther