rkrause
01-18-2008, 09:54 AM
i have attached to jpegs of errors i have. I get the error when i type into a text box hit the update button. Behind the button it just runs a macro. any help.
|
View Full Version : Error help rkrause 01-18-2008, 09:54 AM i have attached to jpegs of errors i have. I get the error when i type into a text box hit the update button. Behind the button it just runs a macro. any help. Moniker 01-18-2008, 10:19 AM Without seeing the query, the error messages are not useful. Also, you've figured out why macros are not usually a good solution. "Action Failed" is about as useful an error message as, "Something's Wrong". Taking a stab at it, you're probably trying to update a recordset that is not updateable. To test that theory, open the query in question (qryUpdatetblArCust) and see if you can edit it. If you cannot, there's your issue. If you can edit it, then there's an issue with the query design. As for the "Invalid Argument" error, you're trying to call a macro or other function or some sort and it's expecting one thing and you're sending it another. For example, it's expecting you to pass it a number, and you're sending it text. Again, these are complete guesses because you've provided zero context here. You'll have to provide more detail if you can't work these out on your own. |