- Katılım
- 1 Mart 2005
- Mesajlar
- 22,254
- Excel Vers. ve Dili
-
Win7 Home Basic TR 64 Bit
Ofis-2010-TR 32 Bit
Dosya gizleme kodları aşağıdadır.
Not: Klasöe seçeneklerinden gizli dosyaları göster seçeneği seçilirse , Bu kod yazılsa bile gizli dosyaları dolayısı ile bu dosyayı gösterir.
Not: Klasöe seçeneklerinden gizli dosyaları göster seçeneği seçilirse , Bu kod yazılsa bile gizli dosyaları dolayısı ile bu dosyayı gösterir.
Kod:
Sub dosya_gizle()
Dim ds As Object, yol As String, a
Set ds = CreateObject("Scripting.FileSystemObject")
yol = CreateObject("wscript.shell").SpecialFolders(16)
Set a = ds.GetFile(yol & "\VeriEkle.txt")
a.Attributes = a.Attributes + 2
End Sub