Search results

  1. arnelgp

    Extract Year From Control On Form

    you can use DateSerial(), you can also use CDate() function: CDate([Forms]![BankTransactions]![ComboYear] & "-1-1")
  2. arnelgp

    Darken background when Msgbox appears

    i agree that the blur is not pleasant to the eyes. but you may try to increase the blur radius, say 20 instead of 5, and you will see it is more pleasant.
  3. arnelgp

    OK, now to my report for my order form

    create sub reports..
  4. arnelgp

    Solved Dmax problems

    in case there is no transaction yet on the table, you can also use as Default value: Nz(DMax("TransDate","TblTrans"),Date())
  5. arnelgp

    VBA class modules & factory design

    i think it is overkill. you can use ado/dao recordset object.
  6. arnelgp

    Darken background when Msgbox appears

    It is sometimes desirable to darken the background when a Msgbox appears so as to catch the attention to the presented message or warning. This is not new, but just wanted to share if it can be of use to you. The code can be used on older Ms Access. Open frmDemo on the attached.
  7. arnelgp

    Help with looping through records

    this is true, you need to change your code: Do Until RS.EOF = True Debug.Print RS.EmailID ' SendPDFReportAsEmail 'Currently commented out for testing RS.MoveNext Loop
  8. arnelgp

    Blur Background demo(using fake form and image control on it).

    the code for the saving image and blurring is generated by our favorite AI friend. demo will show you how to "simulate" blurring of the background so you can pay more attention to the Msgbox presented to you. the demo forms are using "Tabbed documents" (not overlapping). so that frmOverlay can...
  9. arnelgp

    blur background sample

    I revisit this thread to add another "blurring" demo. This time using API and of course with the help of our AI friend out there.
  10. arnelgp

    Solved Report/Query won't print my results

    you should change all Joining lines. right-click on each relation line and choose: Join Properties and from there choose: "select all records from OrdersT..." do this to all your relation lines. you should have this:
  11. arnelgp

    Solved Report/Query won't print my results

    remove the filter from the query, do you see any data?
  12. arnelgp

    Solved Report/Query won't print my results

    is the report based on query and the query is getting the filter from the form? it's hard to guess, without seeing what is going on on your form/report.
  13. arnelgp

    Cheap alternative to Access Imagine (part 2) Camera Form

    I cannot add new update on the original "cheap alternative to access imagine" thread since it is already closed. With this update (form frmCamera2) there is no need to configure the camera (unlike before) before it can be used to take a snapshot. You may want to experiment with various...
  14. arnelgp

    Adapting automatically Access code from 32-bit to 32/64-bit

    it works with Excel, why shouldn't it work in Access?
  15. arnelgp

    Steaming STT using AI model

    you may start with this one: https://www.wiseowl.co.uk/vba-macros/blogs/vba/general-programming/speech-recognition-object-library/
  16. arnelgp

    Working with Timesheet Form

    upload your db.
  17. arnelgp

    Working with Timesheet Form

    can you issue Requery on those 3 Textbox on the Footer, like: Private Sub Form_Current() [TotalMinutesTextbox].Requery [TotalHoursTextbox].Requery [TotalHoursMinutesTextbox].Requery End Sub on you can use the Form's Current event.
  18. arnelgp

    VBA to print Word file and close is

    you may try this: Private Sub cmdExportToWord_Click() ' Code to export and save data to MS Word Template On Error Resume Next Dim objWord As Object Dim wdDoc As Object Dim strPath As String Dim AnswerYes As String Dim AnswerNo As String strPath = "C:\templates\mytemplate.dot" Set objWord =...
  19. arnelgp

    Adapting automatically Access code from 32-bit to 32/64-bit

    there is a sample in our Code Repository bank, and is uploaded in Github. https://www.access-programmers.co.uk/forums/threads/serial-com-ports-in-access-vba.324523/
  20. arnelgp

    Form sizing / scrolling for smaller screens

    there is a simple "control resizer" on the attached db (see the code on frmAppCalendar form. the resizer code is in basUtilty module.
Back
Top Bottom