Search results

  1. R

    filter a certain type only

    Pat, if he enters the stock qty and clicks of it , it changes the table so if he needs to change it back I will see what he has done. SO NO i was not thinking of backing out of it. you are correct it should not be string steve
  2. R

    filter a certain type only

    thank you I have changed it to long not sure where to put this part Select * from tbldatachanges Where Type = 'Resin' within the code steve
  3. R

    filter a certain type only

    Private Sub StockQty_AfterUpdate() Me.DateModified = Now() Dim OldValue As String Dim NewValue As String Dim MaterialID As Double MaterialID = Me.MaterialID OldValue = Me.StockQty.OldValue NewValue = Me.StockQty DoCmd.RunSQL "INSERT INTO TblDataChanges ( Materialid, ChangeDate, ControlName...
  4. R

    formular not working

    thank you . now works great
  5. R

    formular not working

    below is the query i run and it gives me this result for this part number which is correct ie "issued to the shop floor" yet when i select another part number it says " purchased " yet it should be the same as the first one steve
  6. R

    costs for all stock items and stocktake

    i am still confused . so just to make it more interesting , i go to B&Q and buy paint , wood etc etc . i then go to a supermarket and i buy other things and put them in stock how do i calculate that in my year end if there is not a currency field in every part number in stock ?
  7. R

    costs for all stock items and stocktake

    i agree with that but see below how do you know if these items in stock that are for orders or not what currency they are in so i can do my year end cost ?
  8. R

    costs for all stock items and stocktake

    they are interested how i will do the stocktake calculation thats why i ask should all the stock be in pounds ot in all of the currencies and how do i show that on the stocklist what currency it is in if i need to do that
  9. R

    costs for all stock items and stocktake

    My stocklist which could be 5000 items can and does include ,say soap, pens , pencils, gloves , paper , etc etc The p/o does include the transport costs etc see raised p/o so should the item i am purchasing in the form i an creating always be in pound or the correct currency . if in pounds...
  10. R

    costs for all stock items and stocktake

    firstly we always get a quote on the order before Placing that order so we know the costs / total costs and i know have 2 ways to try and deal with the stocktake list 1. always put the quote price in the P/o table in their currency then no exchange rate is needed for the p/o i send to the...
  11. R

    costs for all stock items and stocktake

    hi i have a Dilemma and i am not sure which way to go so lets say i have 3000 stock items sample below , anyone of these items could come from any country in the world . lets say the first 2 items i purchase from one supplier in england, the next 3 in europe and the last 5 in china so i...
  12. R

    CALL ANOTHER CODE

    "if you want one procedure to call three other procedures then yes." ok , i have done the above today i see it could go wrong for me if for some reason the report was wrong yet i have put it to the file and sent it to the customer could the code for the "cmdOpenInvoice_Click" be modified to...
  13. R

    CALL ANOTHER CODE

    these are the 3 codes i use should they be put them into one of which i would struggle to do or just call up the 3 Private Sub cmdEmail_Click() Dim strTo As String Dim strSubject As String Dim strMessageText As String Me.Dirty = False strTo = [Order Details...
  14. R

    CALL ANOTHER CODE

    at the bottom on the first screen shot there are 3 buttons i use to open acknowlegement , send it to a file , and send it to the customer i am now trying to adda button to carry out all these tasks in one go but i dont know how to call them up having tried a few ways. the code at the bottom...
  15. R

    Restrick "closing order" Button being pressed if orders still outstanding

    Managed to look at this again , this is working good ok now , had to do a couple of changes albeit guess what i was doing. thank you for all your help , as it was said much easier that it closes the order automatically steve Me.Parent.Refresh Dim rec_count As Long, ship_count As Long...
  16. R

    Restrick "closing order" Button being pressed if orders still outstanding

    below is my order and order details screen. there are 3 products required for this order. i have discovered that the "order shipped button is sometime being pressed before all 3 products have been shipped. these could be shipped at different dates when the order shipped buttom is pressed the...
  17. R

    balance showing strange results

    ok . i dont want to get into problems later so i am not sure what i should change them fields to . should it be decimal ? can you round formulars ie =[qtyrecd]-[qtyreqd]-[rejected] steve
  18. R

    balance showing strange results

    i am not sure if this can be correct or not but it seems to be working although i did change the qty just to check before the feild size was single
  19. R

    balance showing strange results

    hi , i am confused as to why i get strange numbers when i put numbers after the .dot for example below you can see the quantity reqd is 150 .439, i have had 2 deliveries booked in 103.439 and 47.00 which now equals the reqd qty the field in yellow should show 0 and the conditioning...
  20. R

    code with old value

    hi this is some code someone helped me with a long time ago, and i am trying to go thro all the codes i have been given help with to try and understand how they work for future this code works great but i am total confused how it gets the oldvalue as i have no feild anywhere calling it up...
Back
Top Bottom