Search results

  1. theDBguy

    Max Query Join

    Perhaps you need to join on both the name and the id instead of just the id alone. Are you getting duplicate records?
  2. theDBguy

    Hello

    Hi. Welcome to AWF!
  3. theDBguy

    Solved Problem with continuous form

    Try changing your button code to a simple: MsgBox Me.[NameOfIDfield] And verify that you're getting the correct values as you click on different buttons.
  4. theDBguy

    Solved Problem with continuous form

    Try unhiding the ID textbox to see what's in it.
  5. theDBguy

    How can I delete Duplicate Records from a table

    You can create a duplicate table structure and set a unique index on the duplicate field. Then, insert the data from the original table.
  6. theDBguy

    Linked table date error trapping

    One potential approach: Change the spec to import all columns as Text into a Temp table and then use an APPEND query to convert and transfer the data into SQL Server?
  7. theDBguy

    Linked table date error trapping

    Are you trying to do this in a query? Try using the IsDate() function.
  8. theDBguy

    Microsoft References Needed For SendObject

    Can you show us your SendObject code? Does it have a True argument at the end?
  9. theDBguy

    Solved Issues with Pie Chart

    Are you able to share a sample db?
  10. theDBguy

    Microsoft References Needed For SendObject

    The default references should be all you need. However, SendObject will simply invoke your default mail client. So, make sure you have one.
  11. theDBguy

    Preventing System Admins From Accessing Database

    There's no way for me to test this, but my understanding is if you left SA in, then they can reset its password. Or, if you took out that account, then they can add anyone with admin rights anyway.
  12. theDBguy

    Preventing System Admins From Accessing Database

    I read the link and my understanding is that anyone with admin rights to the server will be able to reset the SA password on the DB instance. I could be wrong though.
  13. theDBguy

    Hello Im new here and want to learn more

    Hi. Welcome to AWF!
  14. theDBguy

    Negative values are seen as positive

    @JIC Welcome to AWF!
  15. theDBguy

    Need help with data filtering form

    What is the big blank area in the middle? Is that a listbox or a subform?
  16. theDBguy

    Hello AccessWorld, I here to LEARN.

    Hi. Welcome to AWF!
  17. theDBguy

    ^{F4} - what does this do

    Is the macro called Autokeys?
  18. theDBguy

    Qry excluding a word not working

    If the category is Null, then it cannot be compared to anything (whether equal to or not equal to). You'll have to handle nulls in a special manner as already described earlier. I asked earlier what other categories were there. I guess you missed it. If there's only "accounts" and nothing else...
  19. theDBguy

    Qry excluding a word not working

    Could be with the data. You may have to post a sample db with test data to show the problem. What other categories are there?
  20. theDBguy

    Query export to Excel through button

    Please ignore what I said. The others already pointed out I probably read it wrong.
Top Bottom