Minh Tiên > 03-07-14, 09:38 AM
Minh Tiên > 03-07-14, 11:00 AM
changkhoonline77 > 25-07-14, 12:31 PM
Dim oApp As Object, doc As Object
Dim strDocName As String
Set oApp = CreateObject("Word.Application")
oApp.Visible = True
strDocName = CurrentProject.Path & "\Word\Danhsach.dot"
Set doc = oApp.Documents.Add(strDocName)
Dim rs As DAO.Recordset
Dim ex As Excel.Application
Dim wb As Workbook
Dim ws As Worksheet
Dim z As Integer
On Error GoTo Err_ExcelOpen_Click
Dim strSQL As String
strSQL = sqlSearch
Set rs = CurrentDb.OpenRecordset("Query_Search_ExportExcel")
Set ex = CreateObject("Excel.Application")
ex.Visible = True
Set wb = ex.Workbooks.Open(CurrentProject.Path & "\Word\DanhSach.xls")
Set ws = wb.Worksheets("DanhSach")
changkhoonline77 > 25-07-14, 03:03 PM
(25-07-14, 12:31 PM)changkhoonline77 Đã viết: Mình muốn khi xuất sang file Excel thì xuất sang file mới rồi chọn nơi lưu chứ không lưu vào file hiện tại thì làm như thế nào mọi người?
file word templte thì như thế này
Mã PHP:Dim oApp As Object, doc As Object
Dim strDocName As String
Set oApp = CreateObject("Word.Application")
oApp.Visible = True
strDocName = CurrentProject.Path & "\Word\Danhsach.dot"
Set doc = oApp.Documents.Add(strDocName)
file Excel đang cần sửa lại[/php]
Mã PHP:Dim rs As DAO.Recordset
Dim ex As Excel.Application
Dim wb As Workbook
Dim ws As Worksheet
Dim z As Integer
On Error GoTo Err_ExcelOpen_Click
Dim strSQL As String
strSQL = sqlSearch
Set rs = CurrentDb.OpenRecordset("Query_Search_ExportExcel")
Set ex = CreateObject("Excel.Application")
ex.Visible = True
Set wb = ex.Workbooks.Open(CurrentProject.Path & "\Word\DanhSach.xls")
Set ws = wb.Worksheets("DanhSach")
Xuân Thanh > 25-07-14, 05:07 PM
(25-07-14, 12:31 PM)changkhoonline77 Đã viết: Mình muốn khi xuất sang file Excel thì xuất sang file mới rồi chọn nơi lưu chứ không lưu vào file hiện tại thì làm như thế nào mọi người?