Search results

  1. A

    Secure MS Access front-end from Hex Editor

    Apologize, it's not to sell, actually I would like to automate what ever I see there's a manual work in our organization, but I can't help it because it's out of my hand, I will give up and rid of this as IT stands besides me. I will continue build applications in MS Access and try to sell it...
  2. A

    Secure MS Access front-end from Hex Editor

    Thanks theDBguy for your help, I really love Access, I am trying to develop Web application with Python. Please advice me if it's the right path. Thanks agin.
  3. A

    Secure MS Access front-end from Hex Editor

    Thanks a lot for all the informations provided, I really appreciate all the responses on this thread. I hope one day find the way to secure my applications. Thanks again for your support and guidance. 👍
  4. A

    Secure MS Access front-end from Hex Editor

    Sorry I was unable to read your reply. I am really sorry because I posted the wrong link. Just to clarify can I post the right YouTube link?
  5. A

    Secure MS Access front-end from Hex Editor

    Thanks to all of you for the worth and your earliest responses. Actually one of the videos I watched shows that Hex editor can change the db Password easily, I am wondering how Microsoft did not find a way to secure their applications... If you would get time, please watch YouTube link EDITED...
  6. A

    Secure MS Access front-end from Hex Editor

    Hi everyone, I have created MS Access application in MS Access and I was really proud to finish it, it tackes from a lot of time and hard work to achieve this. But unfortunately, when I present it to our IT they said that it can be hacked easily by Hex Editor. I would like to protect my...
  7. A

    Loop through current records to find null value in the Subform

    Yes, is it. Private Sub Form_Unload(Cancel As Integer) On Error Resume Next If Status = 2 Or Status = 3 And Status <> 10 And IsNull([ImagesSubform].Form![Path]) Then Beep MsgBox "You must scan & attach the payment request first!", vbExclamation, "No Attachment" Cancel = True End If If...
  8. A

    Loop through current records to find null value in the Subform

    Unfortunately, it will be a bit difficult from the user perspective as he or she will be entering the records and gets references across multi-users, then will scan and upload with typed that references on the papers before the scanning process. Is there a way to amend the code as Do While...
  9. A

    Loop through current records to find null value in the Subform

    Hello how are you? Thanks for your prompt response, yes, that's what I want.
  10. A

    Loop through current records to find null value in the Subform

    Hi all, How can I loop through current records to find if the subform contains a null value in the data entry form then return an error message? Please find below my code which works fine if I navigate to a record not contains a null value but for other records will not catch it while closing...
  11. A

    Dynamic Target Path of MS Access Front End file

    Dear vba_php, I am so sorry for my delayed response, I've missed this thread. I would like to inform you that the code you provided is working fine. 👍 Thank you so much for your efforts 🌹
  12. A

    Constant Error

    It works fine with no error. Thank you so much! :love:
  13. A

    Constant Error

    I got the below error
  14. A

    Constant Error

    Sorry it must be without the full path but I got a syntax error Const strXFDF As String = " & Me.cboForm.Column(1) & ".xfdf"
  15. A

    Constant Error

  16. A

    Constant Error

    Thanks for your earliest response. :) This is another project, also I must use a centralized shared folder for another purpose. I have checked the References there is no missing.
  17. A

    Constant Error

    Hi All, How can I fix the below error (Constant expression required)? As I want to get the value string column 1 from combobox. Thanks in advance!
  18. A

    Replace Message box user input with stars ***

    Thank you so much isladogs for your help it works perfectly as I expected. :) For anyone want's my final modifications here is my code: '** This code to allow (Bypass Key) ensures the user is the programmer needing to disable the Bypass Key ** Private Sub bDisableBypassKey_DblClick(Cancel As...
  19. A

    Replace Message box user input with stars ***

    Thank you, how can I amend my code to open the form then pass the form entry to the code? Could you do me a favor to proceed with your suggestion?
  20. A

    Replace Message box user input with stars ***

    Thanks theDBguy how fast are your replies! Take your time.
Top Bottom