Search results

  1. Eugene-LS

    Use values in Access to input in excel specific cell

    Can you post a copy of your application with just the form (with subforms) and required tables/queries. Just a few (fictitious) records to understand.
  2. Eugene-LS

    Use values in Access to input in excel specific cell

    I think that in this case it is better to address the cells through the active sheet 'Setting active list "Component list" Set objSheet = objWorkBook.Worksheets("Component list") objSheet.Range("M47").Value = Me.Branding_type The code below works fine
  3. Eugene-LS

    Web browsing in Access Update error

    WebBrouserControl = IE
  4. Eugene-LS

    Solved Problems using openargs to filter on a new form

    No. On "Open Selected Record" procedure.
  5. Eugene-LS

    Solved Problems using openargs to filter on a new form

    Try: If Me.NewRecord = True Then ' On new record DoCmd.OpenForm "frmHivePhotos", , , , acFormAdd Else ' on an existing record DoCmd.OpenForm "frmHivePhotos", , , "HiveID = " & Me.HiveID, , , Me.HiveID End If
  6. Eugene-LS

    Auto Populate Two Columns

    I delegate this honorable duty to you! :) But I don't see any education on your part.
  7. Eugene-LS

    Auto Populate Two Columns

    I don't see your solution. By the way, query: SELECT [Vendor#], Code, Vendors_Type.Description FROM Vendors LEFT JOIN Vendors_Type ON Vendors.Code = Vendors_Type.Code; Is not editable ...
  8. Eugene-LS

    Auto Populate Two Columns

    Please change your query "Vendors_With_TypeQ" to the following: SELECT [Vendor#], Code, DLookUp("Description","Vendors_Type","Code = '" & [Code] & "'") AS Description FROM Vendors;
  9. Eugene-LS

    Dmax in text field containing text and number value

    Try: Dim InvoiceNumber As Long InvoiceNumber = DMax("Val(Mid(InvoiceNumber, 2))", "InvoiceT") + 1
  10. Eugene-LS

    Find all empty vba fucntions and procedures

    In Review Quality feature - Select Dead Code Review
  11. Eugene-LS

    Solved Code is executing immediately rather than in 1 second intervals.

    Try: Private Sub Form_Load() Me.TimerInterval = 1000 Me.DisplayTimer = 50 End Sub Private Sub Form_Timer() Me.DisplayTimer = Me.DisplayTimer - 1 If Me.DisplayTimer < 1 Then Me.TimerInterval = 0 Call LogProcess End If End Sub
  12. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D.White - All the story is history. Modern Talking style 80s. ... my favorite! That's all for now.
  13. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D White No connect New Italo Disco, video version 2020, Full HD
  14. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D.White - My Everything (Big Extended Version, mix by Marc Eliow) NEW Italo Disco
  15. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D.White - If you could stay (Fan Video) Modern Talking style
  16. Eugene-LS

    Continue developping

    https://www.access-programmers.co.uk/forums/threads/vba-code-for-relinking-new-tables-from-back-end-accdb-to-front-end-database.322695/#post-1820593
  17. Eugene-LS

    Solved Radio Options to select a record in a continuous form

    Maybe that would work for you?
  18. Eugene-LS

    Bring Word to the front when opened in ACCESS

    With MS Word you can use .Activate method. Private Sub OpenAndActivateWord() 'MS Word - Opening a document and activating application window '--------------------------------------------------------------------------------------------------- Dim sDocPath As String Dim objWordApp As Object On...
  19. Eugene-LS

    Solved Incorrect output when filing report

    I couldn't figure out how it works for you.
Back
Top Bottom