Recent content by arnelgp

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

    Access Webserver

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

    No need for table fields on a form

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

    Form footer not locked to detail section Access 2016

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

    printing labels to selected rows/columns

    it's too late, just in case. please try this.
  11. 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.
  12. arnelgp

    Gantt Chart using Old IE Webbrowser control

    some minor fix, when the left pane is resized, each row's heigh increases/decreases but the right pane row does not change. have this fixed. the Task bars' height also increases/decreases proportionally. background is dimmed whenever pop-up window for New task or Edit task. also "remember" the...
  13. arnelgp

    Gantt Chart using Old IE Webbrowser control

    updated the chart to version 2. added ability to resize the task pane (left side) by dragging on the blue dividing line. note that you cannot narrow the task pane further if the delete (x) button will get hidden (or out of view). added Days and Status column on the Task pane. both task pane and...
  14. arnelgp

    Gantt Chart using Old IE Webbrowser control

    Many times I've seen someone aspire to have a Gantt chart. I have also made a simple one. And I also saw something more complicated. This comes from asking our favorite AI. It uses the old IE webbrowser control. I haven't thoroughly tested it yet. Put the .html file on same folder as the database.
  15. arnelgp

    Modern Calendar on Old Webbrowser control

    ask AI to update the VBA and html file to replace right-click with drag-n-drop to move events. also added code for recurring events. also added combobox for Years, so user won't have difficulty going to any year (starts with 2025 upto 2050).
Back
Top Bottom