Search results

  1. R

    Form errors specific to my own PC

    Thank you both! I'll try that out.
  2. R

    Form errors specific to my own PC

    I get "Method or data member not found" errors on several different databases when I open them on my PC. On some databases, I get errors on virtually everything I click (On Enter, On Click, On Dbl Click errors, among others). I've done some research into these errors. Looking at my VBA code...
  3. R

    Can't understand why one query is updateable and one isn't

    Thanks! I wonder how that happened? I don't know that I ever would have caught that.
  4. R

    Can't understand why one query is updateable and one isn't

    Records can be added into the "Final Assembly" query...which is how I want it. I endeavored to set up the "Structures" query just about identically (the only real difference is that I need two temperatures in its table)...but that one simply won't let me! I've pared down the database as much...
  5. R

    Changes made via combo box not saving?

    The control source of the combo box is "Location", which corresponds to the column in the table. The row source is a simple select query from a lookup table.
  6. R

    Changes made via combo box not saving?

    I have a simple form that has a table as its data source; it's mostly text boxes, with one combo box. For some reason, changes made using the combo box are not made in the record. A selection can be made using the drop-down, or an update can be typed into the combo box, but move off the...
  7. R

    Can't enter data into a table

    I am able to link to an Oracle table through an ODBC connection and update records (directly in the table). I gave detailed instructions on how to do so to another user. She tells me she is able to see the table, but she can't enter data--she gets a "ding" sound when she tries. I am unable to...
  8. R

    Are there any tricky ways to delete records from a form?

    That's a good idea--so would it just be something like this? If IsUserMemberOfGroup("admins", CurrentUserID) Then Me.AllowDeletions = True Else Me.AllowDeletions = False End If (the IsUserMemberOfGroup function works fine)
  9. R

    Are there any tricky ways to delete records from a form?

    I'll do that as a last resort, but ideally I'd like admins to be able to delete records from the form (the "Delete" button still appears for admins, but neither of us deleted the records in question). I'm definitely interested in hearing your ideas about how it might be happening!
  10. R

    Are there any tricky ways to delete records from a form?

    I have a form which had led to records being deleted erroneously. I took off the "Delete" button I had put on the form, and disabled the Delete key (keycode 46 is for both the regular Delete key and the one on the number pad, right?) I didn't think there were any other ways that a user could...
  11. R

    How to stop Delete key from deleting records?

    The delete button would still work even if the delete records option was no?
  12. R

    How to stop Delete key from deleting records?

    Thanks Bob, this worked perfectly. It seems to also disable the delete key on the number pad (which is good)
  13. R

    How to stop Delete key from deleting records?

    Thanks Bob, I'm unclear...do you mean KeyPress or KeyDown?
  14. R

    How to stop Delete key from deleting records?

    I have a form that deletes a record if the Delete key is pressed when the form's on that record. I don't want to entirely stop the form from deleting records...because there's a Delete button that can be used for just that. But records are being deleted without warning when a user accidentally...
  15. R

    Some reports will open up, but not others?

    The name of the report is ReorderRpt. No funny characters or reserved words as far as I can tell.
  16. R

    Some reports will open up, but not others?

    Yep, the listbox is set up correctly. I haven't found a way to open this particular report at *all* in VBA, but it works perfectly fine when clicking on it in the Reports list on the left hand side, or setting up a button on a form for it.
  17. R

    Some reports will open up, but not others?

    I have a list box that displays reports that are supposed to open up when clicked. Some of the reports are opening up, some are not, and I can't seem to figure out why. The relevant part of my VBA is like so: MsgBox (Me![ReportList]) DoCmd.OpenReport Me![ReportList], acPreview...
  18. R

    Why does the text in my text box come up highlighted?

    That worked perfectly. Thank you! (This will be good to understand for the future)
  19. R

    Why does the text in my text box come up highlighted?

    I have one form that shows an overview of records, and another form that is used for adding or updating new records. Adding a record works fine, but then when a user goes back into the form, all the text in the main text box is highlighted. I don't much care where the focus is, but the text...
  20. R

    FrontPage-designed web page can't get to newly added table

    Thanks Simon, Unfortunately, that doesn't fix the problem (and truthfully the way it was set up before was not all that different from that). Remember, the page isn't having any trouble getting to that link itself. If all the data were at that link, it would work fine. It's the fact that...
Back
Top Bottom