设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

ACCESS和EXECL结合的简单说明

1970-1-1 08:00| 发布者: 想不通| 查看: 4421| 评论: 0

引用EXCEL
Dim xlApp As Excel.Application
Dim xlBook As Workbook, xlSheet As Worksheet
Set xlApp = CreateObject("Excel.Application")
Set xlApp = New Excel.Application
Set xlBook = xlApp.Workbooks.Open(EXECL文件名)  '打开要输出的EXECL文件
Set xlSheet = xlBook.Worksheets(1)               '打开工作表,这里是第一个,可以设其他
xlApp.Visible = True                             '显示
xlSheet.CELLS(3, 3) = "'" & 要输出的内容         'CELLS(行,列)  单元格
xlSheet.PrintPreview     '如果是要打印,只要把 PrintPreview 改为 PrintOut
xlBook.Close SaveChanges:=False
xlApp.Quit               '退出



****************
For iCols = 0 to rs.Fields.Count - 1
    ws.Cells(1, iCols + 1).Value = rs.Fields(iCols).Name
Next
ws.Range(ws.Cells(1, 1),  _
    ws.Cells(1, rs.Fields.Count)).Font.Bold = True
ws.Range("A2").CopyFromRecordset rs



*****************************
Private Sub CommandButton1_Click()
Dim CNN As New ADODB.Connection
     Dim RST As New ADODB.Recordset
     Dim Stpath, strSQL As String
     Stpath = ThisWorkbook.Path & Application.PathSeparator & "学生档案.mdb"
     CNN.Open "provider=Microsoft.jet.OLEDB.4.0;data source=" & Stpath '& ";Jet OLEDB:Database Password=" & "123"
     If ComboBox3.Value = "" Then
     strSQL = "Select * from 档案 WHERE 籍贯 LIKE '" & ComboBox2.Value & "'"
     ElseIf ComboBox2.Value = "" Then
     strSQL = "Select * from 档案 WHERE 性别 LIKE '" & ComboBox3.Value & "'"

     Else
     strSQL = "Select * from 档案 WHERE 性别 LIKE '" & ComboBox3.Value & "'" & "AND 籍贯 LIKE '" & ComboBox2.Value & "'"
     End If
     RST.Open strSQL, CNN
     Sheet1.Range("A2:G10000").ClearContents '删除原内容
     Sheet1.Cells(2, 1).CopyFromRecordset RST
RST.Close
    Set RST = Nothing '示放RST 的内存
    Set CNN = Nothing '示放CNN的内存
End Sub

最新评论

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-5-5 22:59 , Processed in 0.066842 second(s), 16 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部