Search results

  1. R

    Compact on close

    Thanks Bob, that's very helpful. RussG
  2. R

    Compact on close

    Hi - I have read conflicting advice on this so wondered what members of the forum would recommend. I have a multi user DB , no more than half a dozen users. DB will be FE/BE and I have set the DB to compact on close. Obviously if another user has the db open this process won't complete. Are...
  3. R

    Advice

    Thanks for your replies. The issue is a customer may request refreshments for multiple dates and times on one order request. The way I set up the DB was that each request(i.e. date and time request) is a seperate order and gets its own orderID. The users want to be able to pull off all these...
  4. R

    Advice

    Didn't notice, noted for future ref. Thanks
  5. R

    Advice

    I have been developing a catering order system at work. A demo version has been in test and initial issues sorted. The users are very happy with the way it works and though far from perfect it does everything they asked for and then some. Basically, each order for refreshments/food creates a...
  6. R

    Advice

    Sorry - duplicated post.
  7. R

    Record Lock

    I solved it by putting a close button on the form with: Me.RecLock = False DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70 DoCmd.Close RuralGuy's option is no doubt better RussG Forgot to mention saving and closing the form suited the way I wanted work, I didn't want...
  8. R

    Record Lock

    Locking Hi Joe - when I get a minute I will have a look and let you know how I solved it. Busy with another problem right now. RussG
  9. R

    Report summary problem

    Sorted this - changed my grouping order which solved the problem. Thanks RussG
  10. R

    Report summary problem

    Hi - little bit of assistance needed. I have a report that groups on Dept then ChargeCode then Codegroup. I have sub totals for each Chargecode. Because 'Labour' is charged separately I want to have a total for all 'Labour' costs which are then deducted off the grand total i.e. Total of...
  11. R

    Cascading Combo on Sub Form

    Thanks for your help chaps , that is working now - also I had not set a link between the 2 forms:eek:, also fixed that now. Would be interested in your comments on design Bob (suspect its to do with the Category table) RussG
  12. R

    Cascading Combo on Sub Form

    Bob - attached is DB as suggested, I have stripped out all the unnecessary stuff. Thanks RussG
  13. R

    Cascading Combo on Sub Form

    Hi Bob - I use WinRar, I'll have to get a copy of winzip. I will upload shortly. Thanks RussG
  14. R

    Cascading Combo on Sub Form

    Thanks for your reply Bob. Tried your suggestion but the same thing happens [Forms]![frmOrdersSub].[Form]![Category] Still works OK on the subform. I could open the subform as a linked form but I am curious to find the answer to why this won't work. RussG
  15. R

    Cascading Combo on Sub Form

    Hi - Hoping someone can help. I have a main order form which holds orderID , customer details, date etc I plan to add a subform which contains the ordered items , much like the Northwind order form. On my subform, because there are so many products I have added a cascading combo box, so I can...
  16. R

    Value isn't Valid

    Hi again - the bound field is CatID. I have already sorted a workaround by removing the autonumber field from the Lookup table (tblCatagory), so the description is stored in the table rather than the record ID. Not as efficient (not going to be a huge amount of data stored ) but it does solve...
  17. R

    Value isn't Valid

    Hi Bob, thanks for your reply; The Data type is Number. SQL for the combo box; SELECT tblCatagory.CatID, tblCatagory.Catagory FROM tblCatagory ORDER BY [Catagory]; SQL for the form query; SELECT tblSchedule.SIID, tblCatagory.Catagory, tblScheme.Scheme, tblSchedule.DueDate...
  18. R

    Value isn't Valid

    Hi - Looking for some help which I suspect will be something obvious. I have a form that is based on a query, I am using the query as a record source so I can filter the form by a date range. On the form I have 2 combo boxes which use 'Lookup' tables to get their values. On the form-when I...
  19. R

    Locking record Not working

    Thanks Bob
  20. R

    Locking record Not working

    Got this working but not exactly as per the code, curious to know why the above code wouldn't work though. RussG
Back
Top Bottom