Search results

  1. zelarra821

    Solved Run a class module automatically on every form

    Buenas tardes. It seems to me that what I am going to ask is a utopia and, therefore, the solution is through the simple path. The thing is, I have developed a class module to disable all hotkeys. I want this to be executed automatically in each form without having to add lines of code to each...
  2. zelarra821

    Solved Set the properties of a COM port

    The solution: Dim PID As Variant PID = Shell("cmd /k ""Mode COM1: BAUD=96 PARITY=n DATA=8 STOP=1""", vbNormalFocus)
  3. zelarra821

    Solved Set the properties of a COM port

    I can't probe it now because my laptop doesn't have COM ports. I have to do it tomorrow when I go to the shop.
  4. zelarra821

    Solved Set the properties of a COM port

    Ok, and all of this on a shell function, like I put above, doesn't it?
  5. zelarra821

    Solved Set the properties of a COM port

    You mean I have to put that Shell("Mode com1: baud=<96> parity=<n> data=<8> stop=<1>", 0)
  6. zelarra821

    Solved Set the properties of a COM port

    Ok, thanks. I will prove it
  7. zelarra821

    Solved Set the properties of a COM port

    I come from that post. I asked the developer about my case, and he recommended me another simpler module. However, in this one I cannot set the parameters of the scale, and I was given the link that you see above to configure these parameters, but it gives me that error that I have indicated and...
  8. zelarra821

    Solved Set the properties of a COM port

    Does anyone know how to fix the error?
  9. zelarra821

    Solved Set the properties of a COM port

    Good morning. Let's see if you can help me. I need to set the properties of a COM port to 9600-8-N-1. I found this link where it talks about how to do it, but doesn't give any concrete example: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/mode I have tried...
  10. zelarra821

    Solved Accede file

    Everything is more or less clear to me. Thank you very much guys for the information.
  11. zelarra821

    Solved Accede file

    But these are lost when you close the database, right? At least with the TempVars. I don't know how to use the rest of the options (variables or properties) that you have mentioned. Regarding this, two questions. 1. Can I use the runtime version of Access on Mac? 2. You will say that the user...
  12. zelarra821

    Solved Accede file

    Let's see, I have two questions: 1. Is it possible to store data without it being stored in a table? 2. What do you mean by this? I think I understand that this format could be executed with a program other than Access. I'm right?
  13. zelarra821

    Solved Accede file

    And the last question. How necessary or useful is it to pass the frontend to accde?
  14. zelarra821

    Solved Accede file

    Hello. Your guide is great. Many of the things you propose I have done in my databases. It is clear to me that there is no 100% security. Thank you so much. Now, I would like you to point out two things: 1. If the database is only going to be used by one person, should I still split it up...
  15. zelarra821

    Solved Accede file

    Good morning. I want to somehow protect the databases I make for the people who ask me for them. I had programmed for several years a form that I have called Configuration, so that the user could customize his application. In the last update I've made to this form, I've added two security...
  16. zelarra821

    Solved Application.VBE.ActiveVBProject.Protection

    B I got it. This is the code for Spanish Access: If Application.VBE.ActiveVBProject.Protection = 1 Then SendKeys "%{F11}%C" & Pwd & "{ENTER}" Application.VBE.ActiveVBProject.Name = DLookup("TituloAplicacion", "T00Configuracion") SendKeys "%HP+{TAB}{RIGHT}%B%C" &...
  17. zelarra821

    Solved Application.VBE.ActiveVBProject.Protection

    I almost got it. The code is this: If Application.VBE.ActiveVBProject.Protection = 1 Then MsgBox "VBA protegido" SendKeys "%{F11}%C" & Pwd & "{ENTER}" Application.VBE.ActiveVBProject.Name = DLookup("TituloAplicacion", "T00Configuracion") SendKeys "%HP+{TAB...
  18. zelarra821

    Solved Application.VBE.ActiveVBProject.Protection

    {Alt} + X ... Open "Extras" menu --> In my case, Herramientas (H) then "i" open "Eigenschaften von ...." --> In my case, Propiedades de (P) Now, I have to know where it means: %A%K %s And how I have to put the password Pwd = "1234" Or Pwd = "{1}{2}{3}{4}"
  19. zelarra821

    Solved Application.VBE.ActiveVBProject.Protection

    Could you translate this? Xi %A%K %s It's for translate for my language.
Back
Top Bottom