Search results

  1. G

    A great loss..

    He achieved a lot of horrible things. Of course I agree that the best outcome would have been had he never existed but his death at the earliest possible time would have been the next best outcome.
  2. G

    A great loss..

    I wasn't comparing Kevin to them. I was responding to you strange claim. Sounds like a mindless religious belief held in denial of reality.
  3. G

    A great loss..

    Hitler was responsible for the death of millions upon millions of people. The only sad thing about his death was that it didn't happen a lot sooner. You insistence that his death was a tragedy says a lot about you. Where did you kill these people? It has obviously affected you in a very big way.
  4. G

    A great loss..

    So Adolph Hitler's death was a loss? Vladimir Putin? How about serial murderers, rapists and pedophiles? I celebrated when my paternal grandfather died. The world became a better place without him. There are a lot of people we would be better off without.
  5. G

    A great loss..

    Wow. He became a security consultant after he died?
  6. G

    Does the UK really have laws like this? Or is this just a myth/rumor ?

    American don't seem to realise how weird their religious behaviours appear to people who live in countries where rationality is valued. So glad I am not condemned to live in the USA.
  7. G

    Gall's Law - Something to Think About

    Procrastination is a strategy to overcome Parkinson's Law. Use the procrastination time before starting to visualise complex system as a network of simple systems obeying thus Gall's Law. Address the Pareto Principle by identifying early which twenty percent of parts are going to be the problem...
  8. G

    How to Convert/Create an Ms Access form into a Web Page (HTML Form)?

    How much experience do you have building web pages? Building one to work with a database as your first would be like trying to ascend a vertical cliff as your first climb. It is also easy to build a page that will make your database vulnerable to attacks if you don't know what you are doing.
  9. G

    How to make Database that is open 24/7 faster and smaller?

    Keep a fresh front end in a central location and copy it to the users' sessions every time they open the application. This can be done with a batch file.
  10. G

    How to make Database that is open 24/7 faster and smaller?

    Are you creating tables or adding and removing temporary records from tables in the the front end? If so that will cause bloat. If so, move any of this activity into a separate temporary database that is created on demand.
  11. G

    Solved Use VBA to Hover over field with mouse causing another form to popup

    Causing a form to pop up when hovering over a control is possible but seems an extreme response with a lot of overhead to run. I couldn't recommend it. Why not do it on a click of double click on the control?
  12. G

    How to sum date/time field

    You don't. DateTime fields are for recording moments in time, not amounts of time. Record the number of seconds, minutes or hours is integers and sum them.
  13. G

    Variable has a random capital ever since I typed it in wrong in a table. How to fix?

    (Half joking) Maybe Surname is a weird word. I have a query in SSMS where SURNAME is a column in a Temporary table. No matter what I do, SSMS is absolutely convinced it is an invalid column name when I refer to it in the main main query. It is perfectly happy with all the other columns in the...
  14. G

    referential integrity

    I have had cases where I could see the reality would be that the program settings would need change in the future, despite users assuring me that it wouldn't. So built in what made sense and simply hid the extra functionality from the front end. Sure enough, before long, the request to change...
  15. G

    referential integrity

    I would have expected transaction and expense to be a many to many. An expense can be paid over multiple transactions. A transaction can pay multiple expenses,
  16. G

    Becoming Free

    Such is the nature of delusion.
  17. G

    Solved * and %

    Note that ADODB wildcards are the percent (%) for up to multiple characters and underscore (_ ) for a single character.
  18. G

    Civil War Beginning in Russia

    Maybe Putin didn't pay the bills? One way or another it is definitely a bad idea to piss off a mercenary army.
  19. G

    Becoming Free

    That "truth" is called "illusion". The mind stops working quite so well and gets confused when it's energy supply is failing during brownouts. Some people take drugs to get the same kind of effect.
  20. G

    Solved Pass an array of Type variable

    I used to think that too, and while it is mostly effectively correct, it is not technically correct and will behave unexpectedly in some rare cases if that is the expectation. I am guilty of having misled other developers so I will set the record right here. The brackets actually mean "evaluate...
Back
Top Bottom