Search results

  1. K

    Form as Form? or String?

    That won't work. In VBA, Enum members must be numeric constants because they are compiled as Long integers. NewLine = vbNewLine will throw an error. It can be NewLine = 10 ' Line Feed (LF) OR NewLine = 13 'Carriage Return (CR) But I'm not sure if that works. Because I always use vbCrLF.
  2. K

    Is AI Increasing Costs?

    When a PhD chemist talks, I switch to listening mode and pretend I understand.🫢 I’ll be sitting quietly upgrading my ignorance.
  3. K

    Is AI Increasing Costs?

    I’m at work and wasn’t able to read the full article. I’ll read it later. I simply scrolled through it. I’m sure they had strong reasons for their decision. China is now facing a lot of criticism from environmental organizations. They believe the heat generated by the data centers is a disaster...
  4. K

    Is AI Increasing Costs?

    Hadn't heard of it. thanks
  5. K

    Is AI Increasing Costs?

    It's several months old, but for those who have not yet heard of it : https://www.sify.com/data-centers/china-launches-worlds-first-ai-powered-underwater-data-centre/ https://www.scientificamerican.com/article/china-powers-ai-boom-with-undersea-data-centers/ After this move, US is planning...
  6. K

    Auto Insurance

    I'm sorry. I don't know why I used "Decrease". It's "Increase". It takes a whole life till I learn English. Edited my post. Apologies.
  7. K

    Watch out for UltraAV Armor package

    I think one of my difficulties with English is forgetting how different our language is from yours. The way we communicate differs greatly from how native English speakers express themselves. In our language, we often omit large parts of a sentence because the structure makes the meaning clear...
  8. K

    Watch out for UltraAV Armor package

    I meant third party antivirus. I think it was obvious.
  9. K

    Watch out for UltraAV Armor package

    Not arguing, but you didn't get the point. I didn't say write your own antivirus.I also didn't mean you be your own plumber. I said when you have a plumber at home, why calling someone else. Windows come with Windows Defender. I asked why using a third party app. My question was why turning off...
  10. K

    Watch out for UltraAV Armor package

    I never take any comment as a personal attack, specially from you. I asked a question, and you simply described your side of story. That's all. And thanks for the detailed reply.
  11. K

    Watch out for UltraAV Armor package

    Would you please explain how following a link in a mail, ends up to a software being installed? Didn't you select/click anything to download and install? Thanks And happy new year. I also don't understand why people still use third-party antivirus software, especially those who have good...
  12. K

    looking to see if there are any records in the table"tblpipeLineInput" with an ID equal to that contained in a textbox "txtStationID"

    Why not : If DCount ("*" , "tblPipeLineInput" , "StationID = " & txtStationID) = 0 then MsgBox "Record not found." End if You don't even need the ELSE section. Because you do nothing there.
  13. K

    some issues with DB form

    You may know it, but if you don't : If you use ChatGPT, you can create custom versions of ChatGPT that combine instructions, extra knowledge, and any combination of skills in a specific purpose. Each of them are called GPT and each GPT is a specialized ChatGPT made for a specific course...
  14. K

    This SQL problem is the MAX() amount of frustration I can handle right now.

    Million thanks for all your efforts. I'm at home and don't have Access here. I'll check it on Monday. I really appreciate your assist.
  15. K

    Auto Insurance

    It seems your situation is very different from ours. Here, there is a lot of effort to reduce car accidents. For example, people who have a gold driver’s license (5 years with no accidents) pay less for var insurance, less for fuel (per liter) or oil, pay lower taxes when renewing their driver’s...
  16. K

    This SQL problem is the MAX() amount of frustration I can handle right now.

    I really appreciate this test. Since the table will grow soon, I think I will go with #2 sql. Million thanks for your time and help, and sorry for the confusion I caused.
  17. K

    Auto Insurance

    It's fine. But the question is how much it effects on the payment. As I explained above, here, a full Non-Fleet Grade (20 years without accident) has a %60 discount. And it's huge. %10 for gold license. 5% for 35+ age and so on. I think you may want to check how your 40 years no accident effects...
  18. K

    This SQL problem is the MAX() amount of frustration I can handle right now.

    You may have missed my edited reply. @CJ_London found the problem and I corrected #1. Access makes it hard to share databases when different locals are set in control panel, or when a database is written in an Asian language. I have had this problem frequently when others can not open my...
  19. K

    Auto Insurance

    Maybe because of 28 years no ticket, no accident. Here, it's the main effect on insurance payments.
  20. K

    This SQL problem is the MAX() amount of frustration I can handle right now.

    Good catch. Thanks. Yes, you are correct. The date I showed in #1 for 10 was wrong. I corrected it. I wasn't able to paste the table. It kept giving me ooops error and asked me to reduce my post to less than 10,000 characters. That was why I had to insert a table, and copy paste each field for...
Back
Top Bottom