Search results

  1. F

    select all option button

    I Know that to use docmd.RunSQL " UPDATE..." thanks for your response
  2. F

    select all option button

    Hi my Expert.. I have button to select or deselect all OptionButton in continuous form and change its caption ...but its select just first OptionButton ..not all OptionButton Private Sub cmdSelectAll_Click() ' Toggle the state of OptionButton1 Me.OptionButton1.Value = Not...
  3. F

    Solved latest price

    the user enter any new item from the combobox in the sub form and after update event I used function Dlookup to get me last price from the Query that you are did it for me..if new item i get value zero in the textbox of last price
  4. F

    Solved latest price

    thank you ..its fixed from @June7
  5. F

    Solved latest price

    i did that and enter a new item in subform and give the last price=0 ..and that what I need ..thank you
  6. F

    Solved latest price

    thank you so much @June7 ..its working perfect
  7. F

    Solved latest price

    Hello My Expert I have tblPurchase with PurchaseID AS primary key and purchaseDate and tblPurchaseDetail with PDID AS primary key and PurchaseID as number and ItemID AS number and purchasePrice as currency...what I want the latest purchasePrice for each Item according to latest purchaseDate any...
  8. F

    Solved invalid use of null

    Thank you All for response ...I dont Know why Im not use NZ Its perfect Now
  9. F

    Solved invalid use of null

    this is my sample.. when No currency type in Euro gave me Error
  10. F

    Solved invalid use of null

    Hi Expert.. I used module to sum Amount according to CustomerNumber And CurrencyType its working Good and give me the Result im main form of saleInvoice but..when there are No Records in the table give me Error "invalid use of null".. in "TotalAmount = rs!TotalAmount" How can I FIX that...
  11. F

    Solved got Error in last Row of sub_form

    I think I was stupid in explaining this... I wanted to count from the one in each invoice .. I was wrong in relying on the itemcod because it bears the number zero and is not null
  12. F

    Solved got Error in last Row of sub_form

    i did...but its not working...thank you It was my mistake because I used a field equal to zero and not Null
  13. F

    Solved got Error in last Row of sub_form

    its perfect ...thank you
  14. F

    Solved got Error in last Row of sub_form

    Sir part hartman ... All I want is a new numbering for each sub-invoice starting from the one
  15. F

    Solved got Error in last Row of sub_form

    the Error at last Row ...when No rcord
  16. F

    Solved got Error in last Row of sub_form

    Hi Expert when Im trying to renumber of sub_form for every new invoice ..i used this for control source of unbound textbox =IIf(IsNull([ItemCode]);Null;Nz(DCount("ItemCode";"SalesOrderDetailsT";"SaleID=" & [SaleID] & "AND SaleOrder <" & [SaleOrder]);0)+1) its work good..but I Get Error at the...
  17. F

    Solved Automatically bring customer data

    Thank you very much for the quick response Yes, this is exactly what I want..I knew how to get customer data by querying..My problem was with adding the address or phone number..I used the RunSQL method. But it works wrong . DoCmd.RunSQL "INSERT INTO CustomerT ([Address] )VALUES (" & txtAddress...
  18. F

    Solved Automatically bring customer data

    Hi Expert.. I have a sales form..when I type the customer's name..it brings me the address and mobile number automatically And when its not exit...I will enter the address and mobile phone in their respective text boxes and they are added to the customers table Any Advice
  19. F

    Solved multiple values from the query to the function

    yes.. that what I want thanks arnelgp You did a good job for me..and I thank you very much How do I hide the empty fields?
Top Bottom