Search results

  1. K

    Reports on Runtime

    I'm using Access 2016 Runtime, on one report I have the zoom in at the bottom right side, then on another report it's not there. What controls this?
  2. K

    Northwind 2.2 Global Error Handlers vs vbWatchdog

    Hi Everyone! I watched the video today with Tom and Kim about the Global Error Handlers update coming in Northwind 2.2. My backstory. I starting rewriting (in Access) a 20+ year application written in Paradox about 2 years ago. I was kind of new to Access, so we decided to just use...
  3. K

    New IronWolf Pro HD from Amazon

    I ordered and received 4 - 14TB IronWolf Pro hard drives from Amazon. The manufacture date on the drives was 9/2021. I go to Seagate's website and register each drive, which will show the end date of the warranty. The listing on Amazon show these drives come with a 5 year warranty, however...
  4. K

    Solved Help with RecordsetClone

    I've got a form with a Continuous Subform. I've got a Delete button that will delete the currently selected record on the subform. Before the record is deleted I'm trying to get the ID of the previous record if one exist or the next record. Of course if there is only one record in the...
  5. K

    Mouse Wheel with RTF Field

    I have a form with a RTF field and the mouse wheel does nothing, if I change the Text Format to Plain Text, mouse wheel works. Is this a bug or do I have something set wrong. I'm running Access 2019. I've seen the API fix for previous versions, but didn't want to add that code if I didn't...
  6. K

    Allen Browne's ConcatRelated

    Is it possible add a new line between each value? For example, my current results look like this: (555) 140-4726 [1] Home, (555) 331-6658 [2] Cell, (555) 345-7062 [3] *EMERG* And I like to get this: (555) 140-4726 [1] Home (555) 331-6658 [2] Cell (555) 345-7062 [3] *EMERG* Thanks, Kevin
  7. K

    Calling Public Sub from an Array

    In a module I have: Public FormArray(9) As String Public Sub modContinue() If FormArray(0) <> "" Then Select Case left$(FormArray(0), 2) Case "fr": DoCmd.OpenForm FormArray(0) Case "cm": Call FormArray (0) End Select 'Shift the remaining elements up one For i...
Top Bottom