Recent content by ADIGA88

  1. ADIGA88

    Solved ADODB In Memory Recordset

    that is it, thanks 🙏
  2. ADIGA88

    Solved ADODB In Memory Recordset

    a follow up question, why the textbox has a white space after it? Thanks
  3. ADIGA88

    Solved ADODB In Memory Recordset

    Thank you guys it is working. first, it wasn't the name I tried others but didn't work. @arnelgp your code worked as it is, and really is no need for the cn even I forget to pass it to the rs.open. and after playing with your code I found out that the issue was lock type, I didn't have to...
  4. ADIGA88

    Solved ADODB In Memory Recordset

    Hi guys, I am trying to create an in-memory ADO recordset and bind it to a form, while I am able to create and bind the recordset to the form, the textbox will not bind with the recordset field. Is this possible at all or I am doing something wrong? Dim cn As ADODB.Connection Dim rs As...
  5. ADIGA88

    Looking For Book Suggestion On Cryptography

    Thank you Doc, those books will gather all the concepts in brief form and this is what am looking for.
  6. ADIGA88

    Looking For Book Suggestion On Cryptography

    This is the problem, there is a lot of material and topics that exist and this is what confused me. I am looking for something not going into much detail that an IT/Programmer can use as a reference.
  7. ADIGA88

    Looking For Book Suggestion On Cryptography

    Hi Guys, I hope you are having a nice day, I am looking for advice, and what better place to look for advice than the AccessWorld great community. I like to hear your suggestions on a book about cryptography, practical cryptography. a book covering day-to-day use cases in the IT domain with...
  8. ADIGA88

    .mdb files just apearing having the same name of the backend db

    I noticed if I open one, the extension of the lock file is .laccdb The user FE (there is admin FE) doesn't have a C&R most likely the issue is that multiple users have the same FE. I will make a copy of FE for each user and disable C&R and see if I still have them.
  9. ADIGA88

    .mdb files just apearing having the same name of the backend db

    No, it exists in a normal folder. Yes, multiple users working on the same FE 🫣, and this setup like this for almost two years. I know I have to separate them There is a couple of admin FE exist but the majority is the user FE and this confirms it.
  10. ADIGA88

    .mdb files just apearing having the same name of the backend db

    Actually yes, I have a separate FE that I am using to update some tables periodically and it's configured with C&R.
  11. ADIGA88

    .mdb files just apearing having the same name of the backend db

    Hi guys, Do you have an idea why my backend has those .mdb files? The app is a multi-user two tears (Front and back) application and shared using windows remote services (both FE BE on the same device) BE and FE are created by Access 365, using Access Runtime for production on a windows server.
  12. ADIGA88

    DAO vs ADO

    Thank you for this info, I had a problem with access in regards to separating dependency this is very helpful.
  13. ADIGA88

    How can we pass result from SQL query to VBA code

    The way to access data (or pass data to VBA) is to use recordsets. it's the way VBA is designed to work with data but it's a bit unnecessarily complicated for non programmers. For me, I am using the DAO (Data Access Object) model, other may use ADO (ActiveX Data Object). An example in order...
  14. ADIGA88

    Food Manufacturing Lot Number Tracking Database

    Programming an inventory management system isn't an easy task, especially if it's integrated with warehouse management or a full document cycle (sales/purchase). but if you need a stand-alone and simple inventory system you can look into the Access Northwind database, you need may need to do...
  15. ADIGA88

    Solved Seat Reservation / Grafik Programme

    side note: I hate this issue with access that you can't generate controls at runtime.
Top Bottom