Search results

  1. A

    Planting a file in the computer registry

    Very accurate statement. But how many are these smart people? Of course you are one of them and one of perhaps 1000. When someone copies the database and moves it to another machine, it will try and try and possibly destroy at least a form or code dependent on VBA or a query. As Uncle...
  2. A

    Planting a file in the computer registry

    What is plan B ?
  3. A

    Planting a file in the computer registry

    Thank you very much, Big Uncle (@The_Doc_Man) Thanks for the detailed explanation. Yes, your words are very accurate. I have been a member of the forum since 2012, I have benefited a lot from your experiences. Attach this database for you. As I said, uncle, this was secured through another...
  4. A

    Planting a file in the computer registry

    Hello guys While I searched the Internet, I found a function that, I think, implants a file in the computer's registry to prevent the database from being copied and transferred to another computer. I hope someone with experience will tell me if my words are accurate. Can I prevent the transfer...
  5. A

    Dsum multiple criteria

    You are correct, I meant that he should not put a ruler (space)
  6. A

    Dsum multiple criteria

    Expr1: DSum("Qty";"[Detail Kontrak]";"[Material]='Jointing Coldshrink Resin 300' And [No Subkontrak] =" & [Nomor Sub Pemesanan] & " ") As he told you (theDBguy) and (arnelgp) you have spaces and also the table name contains an underlined that must be in square brackets
  7. A

    You are a great uncle and I am mortgings 🌺 🌻. I am from Iraq and work at one of the military...

    You are a great uncle and I am mortgings 🌺 🌻. I am from Iraq and work at one of the military institutions.
  8. A

    Yes, Professor I am sorry. That was yesterday I think

    Yes, Professor I am sorry. That was yesterday I think
  9. A

    Add scanner to database

    You are amazing..I accept constructive criticism. I know your words are in my favor. Much appreciation to you, my dear friend.
  10. A

    Add scanner to database

    thank you very much my friend
  11. A

    Add scanner to database

    This is what I definitely do. But, my friend, I do not reach your capabilities. You are really amazing. I am trying to gain and learn from your experiences. Very cool forum. thank you for come by
  12. A

    Add scanner to database

    Develop the example and attach it here and I will test it. I have a scanner. I will give you the results. I am sure that the results are successful because you are doing it. You have great abilities, my friend. 🌷
  13. A

    Add scanner to database

    Many thanks @arnelgp It's a special tool for the scanner and I didn't know how to add it in Access. Question: Why didn't you include it in your example, my dear friend? https://www.access-programmers.co.uk/forums/threads/cheap-alternative-to-access-imagine.307217/
  14. A

    Add scanner to database

    See what the creative colleague wrote @arnelgp It's the same thing, but it's missing a scanner. https://www.access-programmers.co.uk/forums/threads/cheap-alternative-to-access-imagine.307217/
  15. A

    Add scanner to database

    You can study the characteristics, And set the desired properties, such as the source Is that all ???? Thank you my friend ... Have you read about AccessImagine? What I want is the same
  16. A

    Add scanner to database

    Thanks, how?
  17. A

    Add scanner to database

    Hello everyone and good evening everyone Is it possible to add a button to the form for a database that scans a document and saves it for easy retrieval later. , It is associated with a path in a field of the table
  18. A

    Msgbox this Number already exists

    Thank you my friend DBG The code worked well and the message also appears telling us what happened, but the problem is that the program keeps moving forward. I try to return to the field (txtStatFig) again, and I cannot continue until the number is changed. Me.txtStatFig.SetFocus Cancel = True...
  19. A

    Msgbox this Number already exists

    ِAHa, good question dearThe_Doc_Man The number comes on the paper while one of the employees is performing his job, so the user transfers this number from the paper to the program. We have previously heard in the narrations that the Devil slip Adam and made him eat from that tree. This was the...
  20. A

    Msgbox this Number already exists

    Private Sub txtStatFig_BeforeUpdate(Cancel As Integer) If DCount("*", "tblmastr", "StatFig='" & Me.txtStatFig & "'") Then MsgBox " This Number already exists. Please enter a unique Number to continue.", , "Error" End If End Sub
Back
Top Bottom