Search results

  1. arnelgp

    Suddenly Receiving Run Time Error 2057

    you have Requery somewhre in your code. that means Current Event will fire again and GetLastImage will get called again.. and the cycles continues again and again.. endlessly!
  2. arnelgp

    Suddenly Receiving Run Time Error 2057

    with this code: .. Me.frmImageFiles.SourceObject = "sfrmImages" 'name of the form to load in sfrmSubform2 control your comment suggests that the subform name is sfrmSubform2? why use frmImageFile?
  3. arnelgp

    Suddenly Receiving Run Time Error 2057

    just a thought, don't close the Currentdb (db.Close). just set it to Nothing.
  4. arnelgp

    How would one Break out of one's own run time programme?

    i think that you would need to carry the db (accdb/mdb) with you. you should have a copy at home and copy with you. if there is need for some enhancement request, you work on the mdb, then later convert it to runtime.
  5. arnelgp

    Solved How to replace the domain function in MS Access VBA

    Filtering the recordset is much slower than creating a "subset" of a recordset.
  6. arnelgp

    Up and down in a list box

    you need to coy again Arnelgp Module and module SQLParser.
  7. arnelgp

    Up and down in a list box

    i added modListSort module. i change the code in Move2 function of the form. also the lstSelected as 4 columns now, 3 are hidden. the same with query, zzQuerySelectedFlds and zzQueryBlank.
  8. arnelgp

    Rounding Issue

    on normal Round() function, the second parameter is an Integer (not a fraction). so if you are just rounding on 2 decimal places: ' Round Up - always rounds away from zero Public Function RoundUp(ByVal Value As Double, ByVal DecimalPlaces As Integer) As Double Dim factor As Double...
  9. arnelgp

    Up and down in a list box

    if you can post a strip version of the db, someone or i can help it understand better.
  10. arnelgp

    ScrollBar control crashing

    in my case, I set it's Max (or Min) by: Me.ScrollBarName.Object.Max = somevalue
  11. arnelgp

    Solved How to replace the domain function in MS Access VBA

    is this the same question you asked here: https://www.access-programmers.co.uk/forums/threads/how-get-lid-of-domain-function-and-replace-them-with-opening-recordset-in-ms-access-vba.334880/
  12. arnelgp

    Access Webserver

    it is hanging on my pc (BE) when started the server.
  13. arnelgp

    My access crashes when opening form with Modern Chart and Subform control

    here you may try to test. It is not the modern chart's fault. it is because it is creating an Endless loop.
  14. arnelgp

    No need for table fields on a form

    you can even shorten the control source on the main form to: =[F10Test_1]![F3]
  15. arnelgp

    Solved Calculate from previous record in a datasheet, or continuous form

    SELECT YourTable.DateField, [DateField]-(Select Top 1 T.DateField From YourTable As T Where T.DateField < YourTable.DateField Order By T.DateField Desc) AS Diff FROM YourTable ORDER BY YourTable.DateField DESC;
  16. arnelgp

    Annimated Icon on Custom Msgbox Form

    Version 2. Resize the Msgbox form (made it shorter). Make the Icons much bigger. Add background color to the detail section and also background color of the IE webbrowser control consistent with the MsgType.
  17. arnelgp

    Form footer not locked to detail section Access 2016

    on design view, click on the subform, and on it's Property:
  18. arnelgp

    Annimated Icon on Custom Msgbox Form

    still using the old IE webbrowser control to have an annimated icons and to quickly catch the attention on the message.
  19. arnelgp

    VBA add new records from list box to table - error

    maybe add On Error Resume Next: f Me.PriceListItemsPicked.ItemsSelected.Count = 0 Then MsgBox "MUST SELECT @ LEAST 1 ITEM" Exit Sub End If On Error Resume Next Set ctl = Me.PriceListItemsPicked For Each varItem In ctl.ItemsSelected rs.AddNew rs!CustomersID = Me.CustomersID rs!Customers =...
  20. arnelgp

    printing labels to selected rows/columns

    it's too late, just in case. please try this.
Back
Top Bottom