Search results

  1. gemma-the-husky

    setfocus vs hasfocus

    You are probably best having code in each controls event to highlight the control in the way you want, and deactivate the previous control. it won't do it the way you would like in a continuous form though.
  2. gemma-the-husky

    How to make a large project?

    It's only of academic interest because I expect a vanishingly small number of us have ever been involved in projects that conceivably could get big enough to challenge the limits of access, and no doubt we would have a strategy to deal with it if it became necessary, or more likely well before...
  3. gemma-the-husky

    How to validate 'time' value from Excel spreadsheet

    You can treat time as text, and check that the string includes a colon. Force users to enter military time, and reject badly formed spreadsheets. Otherwise you will end up treating 0.75 as 18hours, or 6:00pm, and there's no way to know if that's what was meant.
  4. gemma-the-husky

    Solved Variable not defined

    It's hard to distinguish between a 1 and a lowercase l. Sometimes the errors get picked up are illusory as well. it's easy to get coding constructs that pass the syntax tests but don't run in the way you wanted.
  5. gemma-the-husky

    How to make a large project?

    Having said that, you also have to realise that users are likely to be conditioned by their previous experience and won't necessarily recognize and value all improvements at first sight. The real problem is that developers understand development, but don't understand business practice, and the...
  6. gemma-the-husky

    How to make a large project?

    I still don't believe that any database needs to grow month after month, unless it is caused by normalisation issues, and duplication of processes. Therefore the ever expanding project could be dealt differently without needing to add new forms perpetually. Additionally, as already...
  7. gemma-the-husky

    Not sure what error this is

    I'm not sure but you might also need spaces before and after the equals sign in these expressions. I probably add spaces in SQL expressions where I don't need them, but I know for sure there are some places where you do need to have them.
  8. gemma-the-husky

    How to make a large project?

    And you academically discussing a notional super sized project doesn't mean you really have one. I still don't understand why every month you need to redesign the project, unless it's not been well designed in the first place. That's why I would rather not discuss hypotheticals.
  9. gemma-the-husky

    How to make a large project?

    @amorosik I really think you are talking about an academic/esoteric situation that is most likely unable to ever arise. ie. Can you comprehend a system that is too big for access development? I just can't personally. I have systems that need more space for millions of records, but that's a...
  10. gemma-the-husky

    Solved Can't find System DSN after upgrading to Office 365

    Maybe I'm wrong. What I thought was it's possible to have one mdb that will run correctly in either bitness of access, but it won't compile to an mde that will do the same. That's what I meant anyway.
  11. gemma-the-husky

    Atributes on the relationship 1:N or put them on entity (N)

    @Misionero I don't think you are getting this. This is two 1 to many relationships. Workers table Projects table WorkedBy table Workers 1 --- N WorkedBy N ---1 project. There is NO direct relationship between the workers table and the projects table. (Well, there's a M:N correspondence, but...
  12. gemma-the-husky

    How to make a large project?

    And the real question is .. why would you have a project that is never finished? Why would it need to grow continuously? Why can't you design a form or a query that works correctly in both 2024, and also runs in 2025 without needing to add a new form for 2025. I assume that's the sort of problem...
  13. gemma-the-husky

    Solved Can't find System DSN after upgrading to Office 365

    You can have conditional compiler directives something like this below (Offhand aircode) Others will know the precise syntax. The code will work correctly at run time, and resolve the bitness. The trouble is that you can't build this into an mde/accde and have it work in both bitnesses, as it...
  14. gemma-the-husky

    unsplit database

    If you do that you are back to the same issue. It's hard to develop new facilities as you are always working on the live database. If you split it you can develop using a test version of the database with a test version of the data. When the work is completed, you can release the test version...
  15. gemma-the-husky

    Solved Can't find System DSN after upgrading to Office 365

    If you use mdbs it's a lot easier. You can build with conditional options to select code that is compatible with A32 or A64 and have that resolved at run time. That won't compile to an mde, but it does mean you can have a single database that will work with both versions of access.
  16. gemma-the-husky

    How to make a large project?

    Seriously, I don't see how you can need over 1000 forms.
  17. gemma-the-husky

    How to make a large project?

    My recommendation is to understand the full scope of the project, and to get the data analysis correct, so the table design stands the test of time. Everything else flows from that. Edit. There is no real reason for a project to grow out of control. If you are adding lots of forms each month...
  18. gemma-the-husky

    Solved Remove certain parts of a concatenated textbox

    With this sort of thing, it's good if you can get a standard storage mechanism. Instead of using the parentheses, give the values a separate comma separator. So you get 2, part number 1, 6, part number 2, 8, part number 3 This way it probably becomes easier to process. You have to realise...
  19. gemma-the-husky

    Solved Can't find System DSN after upgrading to Office 365

    Office used to install as 32bit by default, but it's changed to installing as 64bit. You could reinstall as 32bit, and see if that fixes the FoxPro issue, but it does beg the question as to how your other databases are being used. If they are compiled to accde versions, then users might not be...
  20. gemma-the-husky

    Adding attributes to a 1:N or 1:1 relationship. Consecuences?

    @Misionero What you will find is having lots of child tables can make database development awkward, and can affect performance in some ways. It makes a lot more sense now you explained what the DNI actually is. So one way is to have a person, and store the DNI details in the person table...
Back
Top Bottom