Search results

  1. Minty

    form event not executing

    Put a Stop or MsgBox command in the VBA in frmDone, and see when and if it fires. Doesn't ^{F4} send a close command to the active window or am misinterpreting that?
  2. Minty

    Solved Password Validation sub

    Make sure the parameters are explicitly defined in the source query.
  3. Minty

    When was my Worker's Last Day Off?

    To make this work efficiently I would suggest you create a calendar table, ( Ideas for it here ) and then you can easily create a query to join your clock table to the available dates and find the last calendar date that doesn't have matching record and then count the days / hours they did work...
  4. Minty

    Table Search and Total

    @DDJKSA I hope you appreciate the difference in how the data is stored to make the queries work able? This is why Normalisation is important. Kudos to @arnelgp for taking your data and manoeuvring into a sensible format.
  5. Minty

    What's your best/worst joke?

    I was driving past the local prison yesterday and I saw a dwarf shimmying down the wall using knotted bed sheets. I thought to myself "That's a little condescending".
  6. Minty

    Revert "New" Outlook to Old

    I'm on a O365 subscription, and refuse to use the new Outlook, it's awful by comparison.
  7. Minty

    He still does not understand

    You can't point that at one candidate without some balance: It's an important issue, obviously.
  8. Minty

    Table Search and Total

    Unfortunately it really does matter. What happens when you add a week or period to your current structure? You would have to rebuild the query you wrote. Currently your query will be absolutely horrible , something like SELECT Sum(CountC1) as XTotals FROM ( SELECT Iif(C1 = "x",1,0) as CountC1...
  9. Minty

    Table Search and Total

    I'm afraid your table sounds like it is designed like a spreadsheet, so this will be very awkward in Access. You tables should be long and thin with fields along the lines of Subject, Period, WeekDay (or possibly simply ClassDate) You then can simply add up the data by column and subject.
  10. Minty

    Solved Variable not defined

    I don't think you can dim sf1 as a control then try and set it a form reference? Shouldn't it be Dim sf1 as Form Unless sf1 is a subform control, and not the form itself ?
  11. Minty

    How to make a large project?

    We did, very quickly afterwards you wrote in post #5: Read carefully the last line that YOU WROTE , dismissing any reference to any existing applications, experience, or what it was you were doing that would involve adding dozens of objects every month. We asked, you diverted. We asked...
  12. Minty

    How to make a large project?

    You can only create a finite amount of objects on forms, including any that are deleted. This is therefore not recommended under any circumstances, in addition you can't make design changes in a compiled ACCDE version of any Access application, so "on the Fly" changes are a no-no.
  13. Minty

    How to make a large project?

    If only you had written this to start with we would have known exactly what you wanted to find out.
  14. Minty

    How to make a large project?

    @Bennet it hasn't. This entire thread (You need to read all it, not just the last two pages), until you managed to get an answer from the OP, has been based on supposition and obscurity on the purpose and ultimately reasoning behind the question, whilst altering the question subtly when not...
  15. Minty

    How to make a large project?

    At last. An actual description of the mythical Unicorn project. Absolute worst case you'll possibly need 2 or 3 different front ends, connected to a single proper DBMS. Only taken the thick end of 100 posts for you to actually write something that made sense.
  16. Minty

    Solved How to choose data from 2 different tables?

    Add another column to your form or put a combo in the header (Which is purely for data entry not stored) which is Product type. Filter the Product combo to only those items - you can get funky with it and only apply it when the combo gets focus on the detail line, so it doesn't affect the other...
  17. Minty

    Solved How to choose data from 2 different tables?

    If you are on the form Me.Recordset.Requery Will do the job.
  18. Minty

    How to validate 'time' value from Excel spreadsheet

    Actually, you do, as it is generated from Access in the first place, you can export and format the sheet to be locked in various places and put in constraints on data entry into those columns that might be edited. Which might solve a lot of your issues.
  19. Minty

    Solved How to choose data from 2 different tables?

    Put the data all in one table and have a field that identifies the ProductType e.g. Supplies/Ingredients/Third Category you haven't though of yet
  20. Minty

    He still does not understand

    I very rarely comment on these threads, but sorry Pat, you can't point this at anyone whilst defending the Trumpster. He cannot put a coherent sentence together of more than 3 words. I'm sure you don't need me to point to any examples, they are myriad.
Back
Top Bottom