استبدل الكود الموجود في زر الاستيراد بهذا الكود وجرب .....
Dim TextLine
Dim x() As String
Dim TESTFILE As String
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("Select * From Mobaile")
'TESTFILE = Application.CurrentProject.Path & "\Template.csv"
TESTFILE = Me.txtPath
Open TESTFILE For Input As #1 ' Open file.
Do While Not EOF(1) ' Loop until end of file.
Line Input #1, TextLine ' Read line into variable.
'Debug.Print TextLine ' Print to the Immediate window.
x = Split(TextLine, ",")
If x(0) <> "IdentificationID" Then
rst.AddNew
rst!IdentificationID = x(0)
rst!FullName = x(1)
rst!MobileNumber = x(2)
rst!ClassName = x(3)
rst.Update
End If
Loop
Close #1 ' Close file.
rst.Close: Set rst = Nothing