Recent content by bbfromgb

  1. bbfromgb

    A weird problem.

    The captions within the pdf are different to those of the .jpg; I assume this might be the issue
  2. bbfromgb

    Simple Password Strength Checker with PWned Online Check

    Hi Jason, Thank you for providing a 32bit-compatible version, works like expected.
  3. bbfromgb

    Simple Password Strength Checker with PWned Online Check

    Hi Jason, this version does not work within an Access 32bit environment due to LongLong parameter definitions. Regards Bernd
  4. bbfromgb

    Problem with sql syntax with JOIN and WHERE in vba

    if Planning.Bestelbon is not of type "Text", try a type conversion for Me.txtSearch sql = "SELECT Bestelbon, Productnaam FROM (Planning INNER JOIN Tanks " & _<br><br> "ON Planning.Productcode = Tanks.Productcode) WHERE Planning.Bestelbon = " & clng(Me.txtSearch) & ""
  5. bbfromgb

    Problem with sql syntax with JOIN and WHERE in vba

    put a breakpoint in your code after the sql instruction and inspect sql string in the direct window. copy the output in the SQL section of the Query designer and run as a query
  6. bbfromgb

    Problem with sql syntax with JOIN and WHERE in vba

    when Planning.Bestelbon is of type "Text" then try sql = "SELECT Bestelbon, Productnaam FROM Planning INNER JOIN Tanks " & _ "ON Planning.Productcode = Tanks.Productcode WHERE Planning.Bestelbon = '" & Me.txtSearch & "'"
  7. bbfromgb

    Access instance remains in memory once closed

    MS Help for Access states: If you use the CloseCurrentDatabase method to close the database that is open in the current instance of Microsoft Access, you can then open a different database without having to create another instance of Microsoft Access. MS Help states for creating the new...
  8. bbfromgb

    Form on form

    have a look at Daniel Pinault's excellent paper on Subclassing Forms (w_w_w.devhut.net/microsoft-access-form-subclassing-101/) as an idea. He also provided a youtube video on that topic Greetings Bernd
  9. bbfromgb

    MS Access VBA Vs JAVA

    have look at javaprogrammingforums.com
  10. bbfromgb

    How to read IP Address of 'actually used' lan nic?

    you may use this function provided by ChatGPT: Public Function ActiveAdapter() As String '--------------------------------------------------------------------------------------- ' Procedure : ActiveAdapter ' Author : ChatGPT modified: bbfromgb ' Date : 19.06.2025 ' Purpose : find...
  11. bbfromgb

    Can ADO be used for BEGINTRANS COMMIT TRANS

    For Access transactions checkout sonic8's recommendations on transactions on codekabinett.com ((sorry, cannont post the full link)
  12. bbfromgb

    Solved How to convert a month into a number in MS Access Query

    you may try:month(datevalue("31/01/2025"))
  13. bbfromgb

    Cosmetic Problem: Default File Name Appears to be Truncated in File Dialog

    I ran into the truncation problem as well and the only simple but dirty solution for me was to force a 'Home' keystroke after displaying the File Dialogue: Set objFileDialog = Application.FileDialog(3) ' msoFileDialogFilePicker = 3 objFileDialog.AllowMultiSelect = False '...
  14. bbfromgb

    Hello all!

    I'm happy to join the community now, the earlier posts helped me pretty often to solve problems with access I ran into......:cool:
Back
Top Bottom