Recent content by arnelgp

  1. 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.
  2. 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...
  3. 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.
  4. arnelgp

    ScrollBar control crashing

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

    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/
  6. arnelgp

    Access Webserver

    it is hanging on my pc (BE) when started the server.
  7. 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.
  8. arnelgp

    No need for table fields on a form

    you can even shorten the control source on the main form to: =[F10Test_1]![F3]
  9. 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;
  10. 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.
  11. arnelgp

    Form footer not locked to detail section Access 2016

    on design view, click on the subform, and on it's Property:
  12. 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.
  13. 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 =...
  14. arnelgp

    printing labels to selected rows/columns

    it's too late, just in case. please try this.
  15. arnelgp

    Help needed with a unique number ?

    to make it simple, just add a Delivery table. will hold the DeliveryID (Autonumber), WOTicket, DeliveryQty, DeliveryDate use combobox to select which WoTicket on the form.
Back
Top Bottom