tranthanhan1962 > 20-11-19, 06:36 PM
Private Sub XuatExcel_Click()
DoCmd.TransferSpreadsheet acExport, 8, NguonExcel.Value, Application.CurrentProject.Path & "\" & TenReport.Value & ".xls", True
MsgBox "Da xuat xong du lieu sang Excel, File nam trong thu muc C:\KETOANH&V ...", vbExclamation, "Le Dang Van"
End Sub
Private Sub XuatExcel_Click()
Dim strSQL As String
Dim strQry As String
strSQL = NguonExcel.Value
strQry = "TempQueryName"
Set Db = CurrentDb
Set Qdf = Db.CreateQueryDef(strQry, strSQL)
DoCmd.TransferSpreadsheet acExport, 8, strQry, Application.CurrentProject.Path & "\" & TenReport.Value & ".xls", True
MsgBox "Da xuat xong du lieu sang Excel, File nam trong thu muc C:\KETOANH&V ...", vbExclamation, "Le Dang Van"
DoCmd.DeleteObject acQuery, strQry
End Sub
Xuân Thanh > 20-11-19, 07:10 PM
ledangvan > 21-11-19, 09:18 AM
tranthanhan1962 > 21-11-19, 10:21 AM
Private Sub XuatExcel_Click()
Dim strSQL As String
Dim strQry As String
strSQL = NguonExcel.Value
strQry = "TempQueryName"
Set Db = CurrentDb
Set Qdf = Db.CreateQueryDef(strQry, strSQL)
DoCmd.TransferSpreadsheet acExport, 8, strQry, Application.CurrentProject.Path & "\" & TenReport.Value & ".xls", True
MsgBox "Da xuat xong du lieu sang Excel, File nam trong thu muc C:\KETOANH&V ...", vbExclamation, "Le Dang Van"
DoCmd.DeleteObject acQuery, strQry
End Sub
Function ChuyenExcelTable1()
Dim strSQL As String
Dim strQry As String
strSQL = "SELECT Table1.ID, Table1.Colum1, Table1.Colum2, Table1.Colum3 FROM Table1;"
strQry = "TempQueryName"
Set Db = CurrentDb
Set Qdf = Db.CreateQueryDef(strQry, strSQL)
DoCmd.TransferSpreadsheet acExport, 8, strQry, Application.CurrentProject.Path & "\" & "Table1" & ".xls", True
MsgBox "Da xuat xong du lieu sang Excel, File nam trong thu muc C:\KETOANH&V ...", vbExclamation, "Le Dang Van"
DoCmd.DeleteObject acQuery, strQry
End Function
ongke0711 > 21-11-19, 11:59 AM
(21-11-19, 09:18 AM)ledangvan Đã viết: Xuân Thanh à, tôi muốn tạo một cái tool để nó luôn đi theo Report để làm những cái theo ý muốn : Ví dụ xuất ra excel thì Access nó có nhưng khi xuất nó không theo ý muốn, bị vỡ bảng. Hoặc là nút in của Access có nhưng khi ấn in nó ấn in cả ... tôi muốn thay bằng mở lệnh in từng trang, hoặc in theo trang ... Nói tóm lại là muốn nó theo ý mình.
Cái Tool đấy có thể thể hiện trong Form hay trên Rebon hoặc trên thanh Menu... Nhưng vì không biết phải làm thế nào nên tôi chỉ nghĩ là làm Form kèm theo thôi.
Nhờ Xuân Thanh chỉ giúp. Xin chân thành cảm ơn.
tranthanhan1962 > 21-11-19, 01:06 PM
Xuân Thanh > 21-11-19, 03:59 PM
ledangvan > 21-11-19, 05:37 PM