Recent content by CJ_London

  1. C

    Using SQLServer

    One correction from me - you migrate access back end (tables and possibly queries from front end) to sql server, not access and not SSMS. SSMS is just the tool for managing sql server in the same way you would use access to manage access tables (and queries). You cannot use SSMS to create forms...
  2. C

    Using SQLServer

    depends on what the app is doing. DAO is probably easier since the form sort/filter actions will work out of the box. But it is potentially less secure if you don't tie down who can see what in terms of the back view - tables, queries etc (i.e. hide that access navigation window). You should...
  3. C

    Using SQLServer

    Decide first whether you are going to connect to sql server using DAO or ADO (although you can do both if relevant). DAO typically means you will be using linked tables, ADO means you will be creating recordsets as required and assigning them to form/combo/listbox recordsets. Performance wise...
  4. C

    How to refactoring an Access project with AI - for example with LM Studio ?

    Doesn't answer your question, but I've used AI to map a project - how forms/queries/reports/modules etc relate to each other. Simplistically generating a flow chart. As you say download using saveastext (or save as unicode8) then inspect all forms for subforms, all code for calls to open a form...
  5. C

    Solved How to set up unique customer codes based on customer types

    in this scenario what's the difference between handling a a multi column index where a clash arises and a unique key as you describe?
  6. C

    List Box Sort

    not clear on the requirement - if a user moves say the bottom record to the top - do you want just that record moved? i.e. break the grouping. Or both records (GroupID=3) to preserve the grouping? If the latter, you will need a second sequence column to sort on, rather than groupID
  7. C

    Solved How to set up unique customer codes based on customer types

    The danger with that is users look at the code and not the real differentiator (such as full name and address) - and can then select the wrong record and not notice
  8. C

    Making the primary key as the client code from the client name

    Personally I would keep your PK as an autonumber and store the other data in other fields - just concatenate them together when required for presentation purposes Simpler and safer
  9. C

    Solved Encrypted Column Formula In A View Would've Been Ideal

    why? surely you would be deploying sql server? Not to say the client couldn't install SSMS themselves
  10. C

    Solved Encrypted Column Formula In A View Would've Been Ideal

    OP really needs to create a security strategy document - protecting what, from whom, from doing what and how they could do it, backed up by a risk assessment. Once that is done, put relevant procedures in place. Some risks will be so low, it does not justify the cost of implementing the...
  11. C

    Solved Can You Restrict Important Info In Azure If Customer Owns Azure Subscription?

    Therein lies your problem - trying to sell a model T ford in today’s market. If your app is fully inward looking and does not integrate with other apps (such as outlook or web technologies) then the code should continue to work regardless of other changes - at least for 20 years or so. I...
  12. C

    Solved Can You Restrict Important Info In Azure If Customer Owns Azure Subscription?

    Which is why, if your product is so valuable you should be looking at a web solution. An alternative is to use terminal server - which has a licensing cost, can use your access FE and can be accessed by any device that supports TS. You control access to the server and can apply patches/updates...
  13. C

    how to make lastlogin date & time

    You’ve been a member for 8 years and asked the same question 2 years ago https://www.access-programmers.co.uk/forums/threads/record-date-time-entered-user-login.326326/
  14. C

    Solved Can You Restrict Important Info In Azure If Customer Owns Azure Subscription?

    Lost track of your chosen pathway - but if your client has an IT dept ( who will have their own patch strategy) or just has a policy in conflict with yours, think you will struggle with that approach Not quite the same thing but I have clients who use outlook automation and I’m constantly...
Back
Top Bottom