Thanks!
I created a new database and created a new importing specification, I can manually import the data with this newly-created specification, it worked fine. but when I used the specification in my VBA codes, it's still not working. Strange! By the way, I added two more fields at the end in...
In my VBA codes I used the saved specification to import text file which worked fine, but after I edited specification manually, it doesn't import data into Access database any more. Could you please tell me how to fix the problem?
Thanks in advance!
I have two tables (table1 and table2). Both have common fields such as LName, FName and ssn. LName and FName in table1 are blank.
Now I need to insert FName and LName from Table2 into Table1 (where table1.ssn=table2.ssn). How can I accomplish this?
Thank you in advance
I have a form that is linked to a query. The query is created based on the tables which are linked to SQL server. I have set the form’s data entry property to true. But somehow, when the form opens, it is still filled with the data. I have tried: Docmd.openform “formName”,,,, acformAdd, and it...
I have encounter 2 problems while doing the mail merge.
1. when the doc opens from Access form, it only
contains ONE record from my user's machine(should be
more records showing on the different pages).
2. If the date filed is blank in the source table, the doc
will show...
I found a way out. The textbox is still bounded to the field. Instead of using iif() function, I did the following
On the form_Load event
If IsNull(Me.dtDate) Then
Me.dtDate = Date
End If
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.