Here is the code I currently have. What needs to go inplace of ....?
Thanks
CODE
Dim cnn As New ADODB.Connection
LinkPathFile = Mid(FindSource(), 11)
With cnn
.Open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " & LinkPathFile
.Execute "ALTER TABLE tblRequests ALTER COLUMN RequestFee ....."
.Close
End With
LinkPathFile = Mid(FindSource(), 11)
With cnn
.Open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " & LinkPathFile
.Execute "ALTER TABLE tblRequests ALTER COLUMN RequestFee ....."
.Close
End With
