jeck09nt > 04-11-15, 06:34 PM
jeck09nt > 09-11-15, 08:58 AM
maidinhdan > 09-11-15, 09:28 AM
(09-11-15, 08:58 AM)jeck09nt Đã viết: Nhờ các Anh/Chị hướng dẫn giúp mình với !!!
jeck09nt > 09-11-15, 10:31 AM
jeck09nt > 09-11-15, 01:06 PM
'UNPROTECT
Sub UnprotectDocsInFolder()
Dim docfile As Document
Dim docpath As String
Dim docfilename As String
Dim pwd As String
'Path for the documents
docpath = "C:\ProtectManyWords\Words\"
'Password
pwd = "123"
docfilename = Dir(docpath & "*.docx")
Do Until docfilename = ""
Set docfile = Documents.Open(docpath & docfilename)
If Not docfile.ProtectionType = -1 Then
docfile.Unprotect pwd
docfile.Close True
Else
docfile.Close False
End If
docfilename = Dir()
Loop
End Sub
'PROTECT
Sub ProtectDocsInFolder()
Dim docfile As Document
Dim docpath As String
Dim docfilename As String
Dim pwd As String
'Path for the documents
docpath = "C:\ProtectManyWords\Words\"
'Password
pwd = "123"
docfilename = Dir(docpath & "*.docx")
Do Until docfilename = ""
Set docfile = Documents.Open(docpath & docfilename)
If docfile.ProtectionType = -1 Then
docfile.Protect wdAllowOnlyFormFields, , pwd
docfile.Close True
Else
docfile.Close False
End If
docfilename = Dir()
Loop
End Sub
maidinhdan > 09-11-15, 04:54 PM
jeck09nt > 09-11-15, 05:17 PM
jeck09nt > 09-11-15, 05:32 PM
maidinhdan > 09-11-15, 06:01 PM
maidinhdan > 10-11-15, 09:25 AM
(04-11-15, 06:34 PM)jeck09nt Đã viết: Mình đã tạo được Protect nhiều file words theo đường dẫn cố định (ấn nút : "Protect nhiều File Word theo đường dẫn cố định")
Giờ mình muốn khi ấn nút : "Protect All Files" thì tất cả các file word đã chọn theo đường dẫn động của subform "frmDocMan1" sẽ được Protect tất cả.
Đường đẫn giải nén đặt tại : C:\ProtectManyWords\