Search results

  1. K

    Problem communicating with OLE server or ActiveX Control

    Thank you so much JHB! It works perfectly!!!!!!
  2. K

    Problem communicating with OLE server or ActiveX Control

    I'm attaching the backend again! This has all the tables required. The table for the frm_mot_tab is "MOTReviewT" Thanks and sorry for the inconvenience!
  3. K

    Problem communicating with OLE server or ActiveX Control

    JHB : I've attached the backend to this post! Sorry about that.
  4. K

    Problem communicating with OLE server or ActiveX Control

    JHB : The name of the form is the "frm_mot_tab".
  5. K

    Problem communicating with OLE server or ActiveX Control

    Gasman - The error isn't from the code because commented out the code and it still throws the same error. I have three other forms that follow the same naming conventions , same code and the same process and they work fine. I'm pretty new to MS Access. Arnelgp - I do not have the...
  6. K

    Problem communicating with OLE server or ActiveX Control

    Gasman - The error isn't from the code because commented out the code and it still throws the same error. I have three other forms that follow the same naming conventions , same code and the same process and they work fine. I'm pretty new to MS Access. Arnelgp - I do not have the...
  7. K

    Problem communicating with OLE server or ActiveX Control

    This is the code: Private Sub Command455_Click() Dim strSQL1 As String Dim strSQL2 As String Dim strSQL3 As String Dim strSQL4 As String strSQL1 = "INSERT INTO MOTReviewIterations ( fk_project_id, [Date], [Is the project located on an arterial street, " _ & "located in a comme], [A Traffic...
  8. K

    Problem communicating with OLE server or ActiveX Control

    I have a form in which i put a button and built a "on-click" command. I've attached the error file along with this thread. This only started to occur once i put the on-click VBA in. It was working fine before that. When I click on the help section i get the following message: "This error occurs...
  9. K

    How to save previous record in one table and the current record in another table

    Oh okay.I'm gonna try and explain the design, So I totally have six checklists forms and tables and a master table called the project table that consists of the projectid(Autonumber) as a primary key that tracks all the projects. The checklists have their own primary...
  10. K

    How to save previous record in one table and the current record in another table

    Yes! It tracks what the user has entered for that sentence.
  11. K

    How to save previous record in one table and the current record in another table

    The form that I have is a checklist with the drop downs and i couldn't post the field names as they are confidential. That is the reason I recreated the code, all the fields are a set of questions in the checklist that have three options "yes,no,NA". I'm pretty new to the Access world.
  12. K

    How to save previous record in one table and the current record in another table

    I have two tables(main table and history table) and a form for the Main table. The Main form consists of multiple drop downs. I want to track the history of the selections in those drop downs. So when a user makes several changes in the Main form, the previous selections need to go to the...
  13. K

    How to split the code in VBA

    Thank you!
  14. K

    How to split the code in VBA

    Thank you! it worked fine.
  15. K

    How to split the code in VBA

    I have the following code that i need to write in vb after button click but i'm not able to write it because it is too big. I know that you could use "_" or "& _" for strings. But these are fields columns in the table and i'm pretty new to MS Access. Any help is appreciated. The Sample code...
Top Bottom