Recent content by arnelgp

  1. arnelgp

    Using variables as field names

    you do not need bang (!) there. simply: k = rdsR(b)
  2. arnelgp

    Solved Attache files from Subform in main form to Outlook

    change this portion to: .. Do Until .EOF sFile = sPath & .Fields("FileName") ' Construct full file path If sPath <> sFile Then i = i + 1 ' Increment counter for collection key...
  3. arnelgp

    Solved Attache files from Subform in main form to Outlook

    If the subform has Link Master/Child Fields, it will work. you have a Collection Object there (that contains the Path+filename), use it on your code to as Attachment: .. For i = 1 To colAttach.Count objMail.Attachments.Add colAttach(i & "") Next
  4. arnelgp

    Solved Attache files from Subform in main form to Outlook

    you can test this: Private Sub AttachToCollection() Dim rsAttach As DAO.Recordset2 Dim sPath As String Dim sFile As String Dim i As Integer Dim bm As Variant bm = Null sPath = Environ$("Temp") & "\" Set colAttach = New Collection With...
  5. arnelgp

    DSum() formula field on Form shows #Error as Form open with no record entry

    you can use: =DSum("TotalCost","PurchaseDetails","[PurchaseID] =" & Nz([PurchaseID], 0))
  6. arnelgp

    Subform records shake if the number of records is large

    11 is the barcode, "العاب 1000" is the IName. you see table tabl1.
  7. arnelgp

    Subform records shake if the number of records is large

    i think you can have Arabic captions, but not arabic control name.
  8. arnelgp

    Subform records shake if the number of records is large

    oooppps, i attached the non-working db on post#21.
  9. arnelgp

    Subform records shake if the number of records is large

    rename all arabic control names to english. save the form. create new db and import all objects from the old db.
  10. arnelgp

    Subform records shake if the number of records is large

    it is has much flickering because the previous code, the cursor is going to new record, therefore access when refresh the form will flicker. the new code is adding through recordsetclone, but do not go to that record (you can go to the new record ofcourse by setting the form's...
  11. arnelgp

    Subform records shake if the number of records is large

    the "shaking" is minimized (except some twerking).
  12. arnelgp

    Modeling Account types and number of tables needed

    maybe 1 table with "AcctType" to input whether "user" or "service".
  13. arnelgp

    Auto Rotate Photos

    here, test Form1.
  14. arnelgp

    Exclude sime recirds from query result

    Have you tried it yet: SELECT tblParts.* FROM tblParts WHERE ID NOT IN (SELECT tblParts.ID FROM tblParts WHERE (DCOUNT("1","TBLPARTS","ID=" & [ID] & " AND ISNULL(IDSUPERIOR)=TRUE")>0 AND DCOUNT("1","TBLPARTS","ID=" & [ID] & " AND ISNULL(IDSUPERIOR)=FALSE")>0)); result: ID Name Level...
  15. arnelgp

    Is USA directly entering in the war, good or bad?

    This is what I get on FB.
Back
Top Bottom