Search results

  1. darksniper

    Using Macro Tools Design to Open clicked record in edit mode

    Hi, I am trying to figure out how to tell Macro tools builder to grab, the "RecordId" of the record that i clicked on, so that i can validate it, and then open form with that id in edit mode. Been googling that for past 3 hours and nothing.
  2. darksniper

    combo search box returns to first record if search string is empty

    Are there any updates. Just wonder if you were able to open the database. Thanks.
  3. darksniper

    combo search box returns to first record if search string is empty

    Hi, Here is simplified version of my database.
  4. darksniper

    combo search box returns to first record if search string is empty

    Private Sub Combo96_AfterUpdate() ' Find the record that matches the control. Dim rs As Object If Len(Combo96 & "") > 0 Then Set rs = Me.Recordset.Clone rs.FindFirst "[sdutentId] = " & Str(Nz(Me![Combo96], 0)) If rs.NoMatch Then MsgBox "No entry found" Else...
  5. darksniper

    combo search box returns to first record if search string is empty

    thank you. That code works for string searches. For numeric searches, for some reason if the number doesnt match it would go to the first record.
  6. darksniper

    combo search box returns to first record if search string is empty

    hi, I have the following code: Private Sub uiFindByIDComboBox_AfterUpdate() ' Find the record that matches the control. Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[sdutentId] = " & Str(Nz(Me![uiFindByIDComboBox], 0)) If Not rs.EOF Then Me.Bookmark =...
  7. darksniper

    Question regarding linking .mdb file with odbc

    Thank you for fast reply. I also found a solution to the other issue I had. Thank you again!
  8. darksniper

    On error displayes default error code instead of the specifyed one

    Hi, I have set break on all errors. Clicked Debug, compile. It doesn't show me anything wrong. Is there anything I can do to find the error in the code. Thanks.
  9. darksniper

    On error displayes default error code instead of the specifyed one

    Hi, I have added error handling code to my combo box. Private Sub searchName_AfterUpdate() ' Find the record that matches the control. Dim rs As Object On Error GoTo ERR_Handler Set rs = Me.Recordset.Clone rs.FindFirst "[sdutentId] = " & Str(Nz(Me![searchName], 0)) Exit Sub ERR_Handler...
  10. darksniper

    Question regarding linking .mdb file with odbc

    I have been trying to found out why it isn't allowed to link .mdb file though odbc with another .mdb file. I tried Google an answer but could not find it.
  11. darksniper

    need help with select all script.

    I have just tryed that, I get an error, "unknown message receipients"
  12. darksniper

    need help with select all script.

    The onClick event work, to select items while clicking on them. To be precise I would like to merge the 2 scripts above. In other words, the "select all script" should return a "Me!txtSelected" with all of the items selected.
  13. darksniper

    need help with select all script.

    Hi, I have an on click event which adds selected items into a string Private Sub lstMailTo_Click() Dim varItem As Variant Dim strList As String With Me!lstMailTo If .MultiSelect = 0 Then Me!txtSelected = .Value Else For Each varItem In .ItemsSelected...
  14. darksniper

    Searching query based on searched query.

    I get an error message cannot find macro "me" How do I fix that?
  15. darksniper

    Searching query based on searched query.

    thanks, I will try it and let you know the outcome!!
  16. darksniper

    Searching query based on searched query.

    I have a form with a list of ids(that shows one id at a time and the description of that id). I have a combo box that shows me list of the ids and it allows me to go to the id that I select. I have a subform that shows records(one at a time) based on the id that was selected in the from. I have...
  17. darksniper

    Importing data from mde

    I would love to do it, but at the moment I have to merge all of the db that people have been working on with an updated version of the form I have been developing, after the merge, I will work on splitting them form and db, thats why for now I need a way to import db and update on duplicate. So...
  18. darksniper

    Importing data from mde

    The idea of splitting db and form is interesting, I would definitely implement it in the future. But at the moment, I need a way so that I could import the data back-ups from a coworker in another department. I have a similar issue as the person that have started the post, but I don't have the...
  19. darksniper

    Changin the value in the cell as the whole and not as the word in the cell?

    thank you, it works like a charm.
  20. darksniper

    Shameless Behaviour ???

    thx, I'll check it out.
Back
Top Bottom