Search results

  1. mikekal

    template problem

    i have access 2019 version
  2. mikekal

    Update a price

    Just i put a field in inventory table for price
  3. mikekal

    Update a price

    I make that Combobox to select product. Combobox settings: Name: cbxProduct RowSource: SELECT ProdID, ProdName, ProdPrice FROM Products ORDER BY ProdName; ControlSource: Product BoundColumn: 1 ColumnCount: 3 ColumnWidths: 0;1;0.25 VBA code in combobox AfterUpdate event: Me!Price =...
  4. mikekal

    Update a price

    Its ok .I made it.Thank you all
  5. mikekal

    Update a price

    Than you.I try that
  6. mikekal

    template problem

    Thank you for template but i have the same problem for all templates and just ask why
  7. mikekal

    Update a price

    If you have time take a look in my example.I think i cant do all that you tell me.Im not so good in access
  8. mikekal

    Update a price

    How can ubdate a price but have the old prices for older records.Im not input yet a field in "Inventory" named Unit cost
  9. mikekal

    template problem

    When im going to download a template show me that message.Why
  10. mikekal

    Change the end of first name

    Thank you all
  11. mikekal

    Change the end of first name

    If i understand the strName is equal to txtFirstName or the name of field in table "FirstName"
  12. mikekal

    Change the end of first name

    How can this code put it in module and call it from text box in after update
  13. mikekal

    Change the end of first name

    Good morning from Greece How can i put that code in module and call it when after update a field If Right(txtFirstName, 2) = "ος" Then txtFirstName = Left(txtFirstName, Len(txtFirstName) - 1) & "υ" End If If Right(txtFirstName, 2) = "ης" Then txtFirstName = Left(txtFirstName, Len(txtFirstName)...
  14. mikekal

    Change the end of first name

    Ok i try it.Thank you
  15. mikekal

    Change the end of first name

    I want to make that not only for one name but for all names.Make any name i want to general or accusative.Wher can i put your code.Im not so good with access
  16. mikekal

    Change the end of first name

    Im not understand what you mean
  17. mikekal

    Change the end of first name

    I want if the first name ends with "Η" to make it "ΗΣ" That make it and for other endings in one line of code
  18. mikekal

    Change the end of first name

    I want name conversion to general and accusative.If i write it clear
  19. mikekal

    Change the end of first name

    How can fix it.Thank you for your answeer
  20. mikekal

    Change the end of first name

    Is that the right code for change the end of first name: SET GENIKH = LEFT(firstName,LEN(firstName)-1) & "Υ" WHERE RIGHT(firstName,2)="ΟΣ"; Some words are in Greek
Back
Top Bottom