Search results

  1. MajP

    Form Design to Allow Multiple Selections (Add your Ideas)

    This demo lets you fake a MVF combo box control as filter selection.
  2. MajP

    Sorry folks, Access World will not accept my posts

    @Blue Spruce Use this for all things related to this concept https://www.access-programmers.co.uk/forums/threads/form-design-to-allow-multiple-selections-add-your-ideas.334421/
  3. MajP

    Form Design to Allow Multiple Selections (Add your Ideas)

    In response to this https://www.access-programmers.co.uk/forums/threads/sorry-folks-access-world-will-not-accept-my-posts.334416/post-1970117 This thread is designed to allow people to showcase techniques they use. The example I am posting is the common checklist. This uses 4 modifications to...
  4. MajP

    Sorry folks, Access World will not accept my posts

    Yes. It was kind of hijacked with a lot of other things unrelated to trying to fake an MVF. Should have started a new thread instead. I am going to try to do a better example. However, this example may interest you. Did not get much interest when I posted, but I think the concept is really...
  5. MajP

    Sorry folks, Access World will not accept my posts

    @BlueSpruce, Kind of confused on what you do not like on the fake MVF demo. It already does things that these other multi select demos do not and very closely mimics the MVF control. 1. It is parameterized allowing you to use it for multiple controls 2. It demos the concatenation that an MVF...
  6. MajP

    Sorry folks, Access World will not accept my posts

    post 45 shows the solution now to delete selected records.
  7. MajP

    Sorry folks, Access World will not accept my posts

    https://www.access-programmers.co.uk/forums/threads/faking-a-multi-value-field.309635/ You can do this, but no matter how much I tried I could not think of a way to make this completely generic. So this will always require the user to do some coding. You will see that area in the example where...
  8. MajP

    Sorry folks, Access World will not accept my posts

    @DakotaRidge, I read the requirement wrong. I assumed you wanted to clear certain fields, not certain records. So that solution will not help. If you are deleting records, let me do a new demo. Disregard that. If you add an "IsSensitive" field then this code should work sort of Public Function...
  9. MajP

    Sorry folks, Access World will not accept my posts

    I post a lot of code as examples. It is not fully tested or error checked. You definitely want to test this thoroughly.
  10. MajP

    Solved Error 6 Overflow

    Stop wasting your time and simply get rid of all API calls. It is highly unlikely that you need them to do anything. They are likely just some window dressing, and if you are not an advanced programmer you will just waste time dealing with it.
  11. MajP

    Sorry folks, Access World will not accept my posts

    The following code clears all fields in all tables in the datbase that are identified as sensitive in the description field. If the field is required it alerts you that it cannot clear it. Private Sub cmdDelSensitive_Click() Dim rtn As Long Me.txtOut = Null rtn = MsgBox("This will delete...
  12. MajP

    Sorry folks, Access World will not accept my posts

    If I was going to do it for something this big, I would use the description field and mark all fields Now I would loop all tables create a recordset Identify the fields that are sensitive Delete using a delete query since I know the name and field. This would be very short. Did someone provide...
  13. MajP

    Sorry folks, Access World will not accept my posts

    Unfortunately this takes some understanding of code. But you can get all the benefits of a MVF control and still normalize the data. https://www.access-programmers.co.uk/forums/threads/faking-a-multi-value-field.309635/
  14. MajP

    Sorry folks, Access World will not accept my posts

    I am with @DakotaRidge because the above is completely misleading. You cannot simply replace an MVF with a combo. You cannot replace a MVF with a combobox. It requires - Child table - Subform - Combobox in the subform In regards to real estate a subform is going to take up way more space. So...
  15. MajP

    Sorry folks, Access World will not accept my posts

    I think there are two big differences where MVFs are fine and where you most likely will get into problems down stream. I call it a "Simple List" or a "Complex List". You seem to be suggesting "simple lists" and thus not a big deal to go with MVF. But you really need to think about the...
  16. MajP

    Solved Error 6 Overflow

    This is a good point and you inherited this you may want to do it different. Somewhere in your code at the top of a module you have a module level constant, conOutDir It is not in this procedure as a procedure level constant. Since it is a constant that means it is hardwired to the application...
  17. MajP

    Solved Error 6 Overflow

    That means we need to see the rename code..
  18. MajP

    Solved Error 6 Overflow

    In addition to what has bee said, if I was trying to debug, my first step would be to add a debug.print to see if this loop is running away. Do Until .EOF varRet = SysCmd(acSysCmdUpdateMeter, intLoop) intLoop = intLoop + 1 debug.print intLoop ... .MoveNext...
  19. MajP

    Solved Error 6 Overflow

    Does this code break at a certain place? Personally, I would rewrite a lot of this thing. I would never be opening forms and reports in design view and then saving them. As far as I can tell there is no need to do this anyways. I am not sure why they do this. However, without knowing where...
  20. MajP

    Solved Error 6 Overflow

    If you use the code tags it is easier to read for everyone. I did some indenting Public Function CreatePDF(Optional strCalling As String) '************************************************************ 'Date Last Modified: 07/18/07 'Purpose: Loop through xtblRptInv for email custs and create PDFs...
Back
Top Bottom