Search results

  1. B

    Run-Time Error 3983

    Run-time Error: An arguement topdate function was invalid. The field name must be provided as a string value in quotation marks. I have never got this before. I have this same code on other forms, but using other tables and it works just fine. Private Sub lstSearch_AfterUpdate() Dim rs As...
  2. B

    DataType Mismatch

    Okay, fixed it... The form property Data entry was clicked Yes and that is why it would not return the value on the form. I am so sorry for wasting your time on this one. god I make some stupid mistakes. Thank you for all your time and effort.
  3. B

    DataType Mismatch

    lthompson : Lori Thompson
  4. B

    DataType Mismatch

    Bob it is text
  5. B

    DataType Mismatch

    pr2-eugin, I get No current record found. after it displays the msgbox. but it does display info in the msgbox.
  6. B

    DataType Mismatch

    The recordsource of the form is tblOwner
  7. B

    DataType Mismatch

    Does it make a difference the form is a Pop Up form?
  8. B

    DataType Mismatch

    I get lthompson : Lori Thompson Runtime error '3021 No current record
  9. B

    DataType Mismatch

    If i do: rs.FindFirst "[OwnerID] = " & Str(Me.lstUsers) I get dataType mismatch
  10. B

    DataType Mismatch

    No current record found '3021', but the msgbox is still showing the names.
  11. B

    DataType Mismatch

    Compile error: Syntax error DAO.rs AS Recordset
  12. B

    DataType Mismatch

    Bob Rowsource Property is: SELECT tblOwner.OwnerID, tblOwner.FullName FROM tblOwner WHERE (((tblOwner.OwnerID)<>"<---SELECT--->"));
  13. B

    DataType Mismatch

    pr2-eugin properties are as follows: Bound Column 1 Column Count 2 column 1 = OwnerID COlumn 2 = FullName Column widths = 0";1.5"
  14. B

    DataType Mismatch

    Bob if I change it variable back to rs as Object I get lthompson and ltompson in the msgbox
  15. B

    DataType Mismatch

    Bob I am getting the word: and in the msgbox
  16. B

    DataType Mismatch

    Changed to rs As DAO.Recordset and still get he same error. Now and I am getting no record found.
  17. B

    DataType Mismatch

    pr2-eugin ~ Thank you for the advice, but I know the record is there. they can only select from a listbox of choices, so they can't enter there own data to do the search.
  18. B

    DataType Mismatch

    Having a an issue and not sure how this is happenning because I have used this code in a lot of forms. Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[OwnerID] = '" & Me![lstUsers] & "'" Me.Bookmark = rs.Bookmark <---- error is here for the datatype mismatch or No record found...
  19. B

    Compile Error, Type Mismatch

    Stupid Me, I found the error. Dim rs AS DAO.Database S/B Dim rs AS DAO.Recordset
  20. B

    Compile Error, Type Mismatch

    Spikepl ~ I udated the code. the Read shows the error. i cant see what you put out there as a suggestion either.
Top Bottom