Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ardagh

  1. ardagh

    email send receipt

    Juliane Thank you. That seems to be the answer - my apologies for doubting you. Regards Niall
  2. ardagh

    email send receipt

    hello Juliane I think you may have misunderstood my question. I wish to look at an old email that was received and see if a read was sent with it. The email waws opened at the time it was received but the user cannot remember if it included a read receipt. He now wants to know!!! Is there...
  3. ardagh

    email send receipt

    A colleague at work has received an email from a regular contact. He has noticed that the last few emails have included a read receipt. He is not sure if this was the case always. Is there any way to check the properties of an email to see if a send receipt was send with it. We use Lotus...
  4. ardagh

    limit decimal places

    That works fine Thank you
  5. ardagh

    limit decimal places

    I have the following code to calculate output per hour. It works but how can I limit the result to two decimal places. Private Sub Hours_AfterUpdate() Me.lbloutputph.Caption = Me.Qty / Me.Hours End Sub Thanks
  6. ardagh

    Use selection from drop down list as parameter for another query.

    Still no luck. Is there anyway I can attach a small example database to show exactly what I'm trying to do.
  7. ardagh

    Use selection from drop down list as parameter for another query.

    Hi Thanks for your input but I can’t get it to work. Do I need to put an on_click or an After_update event in the first box to run the second query (qrysum) and populate the second list box. Here is my setup below. I have a form called frmsearchNew. I have a combo box called pickpart to...
  8. ardagh

    Use selection from drop down list as parameter for another query.

    I want to be able to choose an item from a drop down list (based on a query i.e. distinct products) and have the item chosen to be automatically used as a parameter in another query.
  9. ardagh

    How can I ensure calculated field will alway be positive

    You are probably correct but I don't know anything about VB. Ideally I would like to put the required code in the click event of the save button in the frmissuestock . This would check the value in the qty text box in frmissuestock against the value in the SumOfQty field in the qrySum (for...
  10. ardagh

    How can I ensure calculated field will alway be positive

    I have a calculated field which sums the quantity field for all transactions by the part#, lot# and location. (A part number could be in several different locations and lots and are treated sperately - if they are in the same location with the same lot number they are summed). To add...
  11. ardagh

    Filter Query ??

    What is the best way of allowing the user to search the database and return all incidents of a particular item. It should group them by raw material, Lot# and location. It should also calculate the total in each lot# - material can be taken from a location by inputting a negative value (-10...
  12. ardagh

    Stock control Database

    I am developing a simple database for stock control as a short term measure until we get a permanent solution. All I wish to do is to be able to record additions to stock and record issues from stock. I need to be able to query for a raw material Part # and see what Lots are available and...
  13. ardagh

    produce a report - using a drop down list

    My aim is to produce a report - using a drop down list (of customers from customer table) so that users can look at customer history. I have created a form with a drop down list of customers - from customers table. I have used this to filter the results for a query on the orders table (gives...
  14. ardagh

    Append Query

    Hi I have setup a database which captures manufacturing data and produces management reports. i should state that I am not an access expert. I have the following tables customers, employees, operations, timesheet, workorder. The first two table are self explanatory. The operations table holds...
  15. ardagh

    Enter zero instead of #error

    Thank very much It seems to be working fine - returning a value of 0. I used the Nz function as you suggested. Again thank you

Part and Inventory Search

Back
Top