Search results

  1. Eugene-LS

    help with salaries Database

    Try in "Salaries_Emp" form: ... and "Salaries_Temp" Form :
  2. Eugene-LS

    Calculated value not working

    Missing parentheses when applying the Nz() function ... Nz([F7]; 0) =([F5]*[F4])+Sum([F6]+Nz([F7]; 0)) or =([F5]*[F4])+Sum([F6]+Nz([F7]))
  3. Eugene-LS

    How to delete specific printer memory on report?

    I wrote this module for the same situation The comments there are in Russian - I'm too lazy to translate them and see no point
  4. Eugene-LS

    Solved Syntax error in DSum

    glad to read this (y) You're welcome!
  5. Eugene-LS

    Solved Syntax error in DSum

    Try that expression: =Nz(DSum("Importe";"CGastosEIngresos";"IdCategoria=2 And IdProyecto=" & Nz([IdProyecto];0));0)
  6. Eugene-LS

    Solved Syntax error in DSum

    Please write - What are you trying to show in this field? Your expression: =DSum([Gastos];[CGastosEIngresos]; "IdCategoria=2 And IdImporte=" & [IdImporte]) Can't work because there is no "[CGastosEIngresos]" field in the "[Gastos]" query
  7. Eugene-LS

    open form on specific record through listbox filter record issue

    Try: Private Sub DynamicList1_DblClick(Cancel As Integer) If Mid(Me.DynamicList1.RowSource, 8, 14) = "TransactionsPK" Then DoCmd.OpenForm "frmTransactionsMain", , , "[TransactionsPK]=" & Me.DynamicList1 Else MsgBox "Wrong [DynamicList1.RowSource] Property!", vbCritical...
  8. 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.
  9. 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
  10. Eugene-LS

    Web browsing in Access Update error

    WebBrouserControl = IE
  11. Eugene-LS

    Solved Problems using openargs to filter on a new form

    No. On "Open Selected Record" procedure.
  12. 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
  13. Eugene-LS

    Auto Populate Two Columns

    I delegate this honorable duty to you! :) But I don't see any education on your part.
  14. 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 ...
  15. 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;
  16. Eugene-LS

    Dmax in text field containing text and number value

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

    Find all empty vba fucntions and procedures

    In Review Quality feature - Select Dead Code Review
  18. 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
  19. 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.
  20. Eugene-LS

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

    D White No connect New Italo Disco, video version 2020, Full HD
Back
Top Bottom