Search results

  1. Saphirah

    Solved How can one change the member tag

    Hey everyone, less of a suggestion and more of a question. I see a lot of you guys have a custom member tag/title. How can one change that?
  2. Saphirah

    Solved Check if entry in connection table exist and output bool

    Does creating a unique index on 2 fields only block the creation of the new record if BOTH fields match? So to be more clear, does the following work?: CustomerID: 1, CarID: 5 CustomerID: 1, CarID: 6 CustomerID: 1, CarID: 7 and the following does not?: CustomerID: 1, CarID: 5 CustomerID: 1...
  3. Saphirah

    Solved Check if entry in connection table exist and output bool

    Thank you very much. This solves the problem. While this approach does produce a lot more data it is a good workaround :)
  4. Saphirah

    Hack attack attack

    Oh whoops, i just googled the definition of naughty. Might not have been the best choice of words :LOL: Sassy would be more fitting i think :D
  5. Saphirah

    Solved Check if entry in connection table exist and output bool

    Hey everyone, in my current project i have a list of Car Types one should be able to assign for each customer. for this system i have 3 tables. tbl_CarType(CarID, TypeName) tbl_Customer(CustomerID) tbl_Customer_CarType(ConnectionID, CustomerID_F, CarID_F) You can see tbl_Customer_CarType is...
  6. Saphirah

    Hack attack attack

  7. Saphirah

    Hack attack attack

    Just answer another person and copy paste the quote inside the text box :D
  8. Saphirah

    Hack attack attack

    My bad Jon, i misread the previous messages. Do you feel adressed conception_native? ;) You might be trolling some times, but i do not think you really have some ill intentions towards the forum. Else you wouldn't have sticked around so much :)
  9. Saphirah

    Hack attack attack

    This i understand, but DDos is a denial of service attack and usually does not grant you passwords and stuff... So why in the world would you want a free access code forum to shutdown? This was my thought at first, and kinda the only explanation... Hmmmm
  10. Saphirah

    Hack attack attack

    I do not understand these people. Why would you care to DDos a free code help forum?
  11. Saphirah

    Mobile theme changing automatically

    I assume what he is talking about is the automatic OS Update of Android. Sometimes it happens that your system preferences are set to dark mode. I do not know how this website is programmed ofc but a lot of websites use the default mobile device setting to switch between dark and white mode
  12. Saphirah

    Solved Insert data from a form into a new row of an existing excel spreadsheet

    If you just need headers/descriptions on the first row and then insert all your data afterwards in your spreadsheet you can build a query with the correct data and then use the following code to export the data to an excel sheet. This might not be an optimal solution because it will override the...
  13. Saphirah

    I identify as vaccinated

    Isaac I see 2 main arguments in your posts. First is the potential side effects of the vaccines. While i do understand that medicine has different effect on people the side effects on the vaccine are minimal. You took the blood clots for example. In the UK from 23 million first doses 309 had a...
  14. Saphirah

    I identify as vaccinated

    So let's talk about my own experience. After over 1 years of constant lockdown even during the lockdown our local index was at 150-200. I do not know if you have a different system for indicating the infection rate, but 150 is high. Now after they started vaccinating people the mortality rate is...
  15. Saphirah

    I identify as vaccinated

    My opinion is similar to Jon. But let me maybe describe it in another way. To make a logical decision about if you should take the vaccine or not one needs to evaluate the risks. In a country with a good medical infrastructure like germany the death rate of covid is around 2%. That means 1/50...
  16. Saphirah

    Dark Gray Webbrowser Control

    I can confirm that the pdf preview in the webview is broken after the latest windows update. I did update my development computer and the preview is broken too. You can show html files and access webpages, but PDF does not work anymore.
  17. Saphirah

    Dark Gray Webbrowser Control

    Hello everyone, i have an ActiveX webbrowser control in my access database which is supposed to show PDF's. On some of our machines the webcontrol only shows a dark gray area. This is the code i use to open the pdf: WebBrowser.Navigate "T:\Path\To\File\FileName.pdf" I made sure the path for...
  18. Saphirah

    Should i disable OpLocks on a shared multiuser database?

    Thank you, this helped me a lot. Enabling OpLocks used to cause database corruption 4-5 years ago. But to my knowledge they fixed that (Not 100% sure though). In Access i am using no locks, because it is not necessary in my case. But OpLocks makes windows lock the file until the user finished...
  19. Saphirah

    Should i disable OpLocks on a shared multiuser database?

    Hey everyone, currently i am running a Frontend/Backend Split, networked Access database. The backend lays on a seperate computer and we are using Shared Windows folder to connect the other PC's to the backend. (If it helps, the command we use to connect to the server is simply "net use T...
  20. Saphirah

    Open Msg File using a specific Outlook Account

    I am sorry, i think you misunderstood me. Let me clarify. I store Emails as Msg files on my hard drive. These Files contain everything from the source email, including attachments etc... Whenever the user wants to open a linked email i open this Msg File. The following window opens: This is a...
Back
Top Bottom