First a routine to get the file name from a dialog box:
Private Sub cmdBrowse_Click()
On Error Resume Next
fileName = ""
commonDlg.Filter = "All Files (*.*)|*.*"
commonDlg.ShowOpen
fileName = commonDlg.fileName
If fileName = "" Then
txtFileName.Value = "No file was selected"
Else
txtFileName.Value = fileName
End If
End Sub
Then I have a subroutine that performs the following statement:
importFile ztblName, fileName, xlRange, fundTypeId
Public Sub importFile(ztblName As String, fileName As String, xlRange As String, fundTypeId As Integer)
On Error GoTo errFunct
'empty tables temp and source
Dim ssql As String
ssql = "delete from " & ztblName & "_Temp"
dBoperations ssql
ssql = "delete from " & ztblName
dBoperations ssql
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, ztblName & "_Temp", fileName, False, xlRange
'update import info
ssql = "update ztbl_Fund_ImportInfo set dtImported='" & Now() & "', usrImported='" & ap_GetUserName & "' where fundtypeid='" & fundTypeId & "'"
dBoperations ssql
errFunct:
If Err.Number <> 0 Then
MsgBox ("Error importing file! Error Description- " & Err.Description)
Err.Clear
DoCmd.Hourglass False
End If
End Sub
|