Recent content by boblife42

  1. B

    Runtime error '2465'

    Thank you both for the help, it now works.
  2. B

    Runtime error '2465'

    Hello all I am getting the following runtime error 2465 - Application-defined or Object-defined error when I run the following code. Private Sub sfrm_Image_Count_Enter() Dim rs As Recordset Dim strSQL As String strSQL = "SELECT * FROM tbl_Monthly_Estimate WHERE [ProjectID] = '" &...
  3. B

    Runtime Error 3061

    Thank you that worked I feel silly for forgetting that, I had it written down.
  4. B

    Runtime Error 3061

    Message: Runtime Error '3061' Too few Parameters Expected 1
  5. B

    Runtime Error 3061

    pbaldy: Yes the field names in the code are what I have to use.
  6. B

    Runtime Error 3061

    Neither of those worked
  7. B

    Runtime Error 3061

    Kinda new to this language how would change it to a DAO.Recordset
  8. B

    Runtime Error 3061

    Hello I am comparing an array word to two different tables if the word is in one of the tables then I increase the count of that word, if the word is not in either table I add the word to a specific table. I thought I had the code figure out but I am getting a Runtime Error, any help would be...
  9. B

    Help with Runtime Error 424

    Thank you for that
  10. B

    Help with Runtime Error 424

    You are wonderful that worked. Thank you, why did it need quotes for future reference.
  11. B

    Help with Runtime Error 424

    When I set it to CurrentDb I get the error message that it cannot find the input table. I have double checked the spelling on the table name, any thoughts.
  12. B

    Help with Runtime Error 424

    I am getting a runtime error 424 Object Required, for the following code Private Sub DescProblem_LostFocus() Dim rs As DAO.Recordset Set rs = dbs.OpenRecordset(tbl_TempDescWord) Dim strArray() As String Dim j strArray = Split(DescProblem) For j = 0 To UBound(strArray) MsgBox strArray(j)...
  13. B

    Concatenate strings together

    Hi, thank you for trying to help here is what I came up with and it seems to be working: Private Sub PayPeriod_AfterUpdate() Dim rs As Recordset Dim strSQL As String Dim i As Integer Dim strDayNum As String Dim strDayAMIn As String Dim strDayPMIn As String Dim strDayAMOut As String...
  14. B

    Concatenate strings together

    I can not store the date and time together, the date changes every two weeks the time in/out is a set schedule. That is the main problem, I have to store a changing value with a constant value.
  15. B

    Concatenate strings together

    I need to have the following time in/out code and a specific date for a two week period to populate a specific field in a form. The "PayPeriod" is the trigger for the event, I need help with the rest of the code to have the payperiod subtracted from 1 through 13 to get the correct work date...
Top Bottom