T
thanhphong
Guest
1. File excel thiết định thư viện sau:
2. Đoạn code sau sẽ chuyển file word thành html.
Hạn chế: Đường link không được có khoảng trống, tức là tên thư mục phải viết liền nhau.
Nguồn:
Bạn cần đăng nhập để thấy hình ảnh
2. Đoạn code sau sẽ chuyển file word thành html.
Mã:
Public Sub test()
Dim objWord As Object
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
objWord.Documents.Open "D:\VBA\File1.docx"
objWord.ActiveDocument.SaveAs2 Filename:="D:\VBA\SaveAsHtml.htm", FileFormat:= _
wdFormatFilteredHTML, LockComments:=False, Password:="", AddToRecentFiles _
:=True, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts _
:=False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False, CompatibilityMode:=0
objWord.ActiveDocument.Close
objWord.Quit
End Sub
Nguồn:
Bạn cần đăng nhập để thấy link