Recent content by kroeger

  1. K

    User Account Form - Encrypted password

    Good advice, thanks again.
  2. K

    User Account Form - Encrypted password

    Update, Thanks BluIshDan. I have used the On Current event to decrypt the password. The password now displays as plain text and is encrypted again when the before update event triggers. I have been struggling with this all day!!!! :)
  3. K

    User Account Form - Encrypted password

    Thanks for the tip, I will look into this.
  4. K

    User Account Form - Encrypted password

    Hi, I am using an RC4 vba function to encrypt the password when a user account is setup in the front end of my split database. The password is stored in the backend encrypted. It is encrypted in the before update event of the form by calling a function against the bound password field. My...
  5. K

    Use parent form value in sub-form calculation

    hi will try that thanks
  6. K

    Use parent form value in sub-form calculation

    I have an unbound text box on the parent form called txtTaxRate. I have all of the subform fields bound to the SaleItems table. The field in that table called taxDue is the one I want to put the calculation in. There are also fields for qty and price. I want to do something like...
  7. K

    Use parent form value in sub-form calculation

    Hi, I have a parent form where I enter a value for tax rate. I need to use this value in the tax calculation in the subform fields i.e. subform.taxdue = subform.qty * subform.price * parent.taxrate. I can get the value into the field. But I do not think I am putting it in the correct event. The...
  8. K

    Best form event to update stock

    Thanks I can see the logic in doing it that way. So long as I know the starting balance I can then write a query to sum all of the order item quantities to get qty sold. The reason I need to reference a stock qty though is so that the order can be fulfilled or whether additional qty needs to be...
  9. K

    Best form event to update stock

    thanks I will give it a go :)
  10. K

    Best form event to update stock

    Hi, I would appreciate some advice on the following: I have an order form with an order details sub form. Both are bound to their respective tables and function correctly, with the OrderID being inserted automatically into the order details table. However I am using VBA to update and check...
  11. K

    How to validate that at least one checkbox is selected

    sorry I really must read the detail.
  12. K

    How to validate that at least one checkbox is selected

    Sorry Bob, I did not mean it does not work. It works fine with your code. I was just thinking aloud on why it needs to set the check box to true to work correctly. Also I was just stating that the code works in the main form and therefore I do not need it in the other form.
  13. K

    How to validate that at least one checkbox is selected

    Hi I have put your code into my db with the Nz function as well. The code is working!!! It will not work without the Nz function or if I leave out setting the check box to -1 afterwards. Why is it that it is only selectable if it is set to true? also please can you tell me what the cycle...
  14. K

    How to validate that at least one checkbox is selected

    thanks I got the latest version.
  15. K

    How to validate that at least one checkbox is selected

    Thanks for your time. I will have a play around with it and try and learn from it.
Back
Top Bottom