Recent content by vanzie

  1. V

    Solved Security Risk Microsoft has blocked.....

    The local path seems to work on my PC. The reason why I don't want to distribute the FE locally is because they always tend to forget or they intend to mess things up and on a daily basis help to recover their files. But if it has to be done, it has to be done. So far had no problems using one...
  2. V

    Solved Security Risk Microsoft has blocked.....

    There is no such option. I've just set up the share drive on another employee's PC and started the database. It gave me the same error but showed me the message bar to Enable Content and added to file as Trusted. No problem whatsoever. I've relinked all tables to the back end file and removed...
  3. V

    Solved Security Risk Microsoft has blocked.....

    Hi everyone. To avoid duplicate thread, please direct similar solved post. I am running Windows 11 on a administered network. The front end and back end file is on th same share drive but back end is password protected and since many users are utilizing the FE, the BE is linked through network...
  4. V

    Solved Error 2448 Can't assign a value to this object

    My thoughts exactly
  5. V

    Solved Error 2448 Can't assign a value to this object

    That works perfectly. Thank you
  6. V

    Solved Error 2448 Can't assign a value to this object

    When it shows me the error and I click debug, it highlights this part: ctrl = StrConv(ctrl, vbUpperCase) same with @arnelgp code: ctrl = StrConv(ctrl & "", vbUpperCase)
  7. V

    Solved Error 2448 Can't assign a value to this object

    But now I don't understand is that I've gone through another database I designed and the exact method I used there, is used in this one. Same age display textbox with the expression and it saves perfectly without error.
  8. V

    Solved Error 2448 Can't assign a value to this object

    There is one control yes that has the expression to display the age from the DOB value but the age value does not save to the table
  9. V

    Solved Error 2448 Can't assign a value to this object

    Still gives me the same error
  10. V

    Solved Error 2448 Can't assign a value to this object

    Hi everyone My code: Dim ctrl As Control For Each ctrl In Detail.Controls If (TypeOf ctrl Is TextBox Or TypeOf ctrl Is ComboBox) Then ctrl = StrConv(ctrl, vbUpperCase) End If Next This code is fired upon clicking the Save button in my form and is the first code in the line. All...
  11. V

    Solved Access Application Not Responding

    I've disabled the wifi on the laptop and behold...the f..ng thing did not freeze. What I don't get is that it's just the normal documents folder that you will get on any standard PC or laptop, and that folder was not shared on One Drive at all. But I did take note...The laptop has been spoofed...
  12. V

    Solved Access Application Not Responding

    Would disabling my network help by any chance?
  13. V

    Solved Access Application Not Responding

    Yes because if I use the laptop outside the organization without being connected to the IT network, I won't be able to access any of the files
  14. V

    Solved Access Application Not Responding

    The DB file is local. It's stored in My Documents folder on the HDD. I'm still busy with the design so nobody is using it.
  15. V

    Solved Access Application Not Responding

    Hi everyone Need some help on a frustrating matter. I've started a new database file and whenever I start working on a form or open the VBA window, the application freezes and becomes non-responsive for up to 5 minutes. This can be anything from opening a form in design view or renaming a...
Top Bottom