Search results

  1. N

    Subform to requery Main form field

    Yes!! I check your demo & know how to do. Thanks! again!!
  2. N

    Subform to requery Main form field

    Thank you very much!!
  3. N

    Subform to requery Main form field

    Sorry to make you confused... I mean not use the button, is the big subform field after update, the two small subform can auto requery
  4. N

    Subform to requery Main form field

    please check the pic
  5. N

    Subform to requery Main form field

    Me.Recalc same no use! I just only want to know, after update the subfom field, how to requery the main form field?
  6. N

    Subform to requery Main form field

    Hi theDBguy Please check the attached file
  7. N

    Subform to requery Main form field

    I will prepare the sample file for you
  8. N

    Subform to requery Main form field

    it not work use in subform field AfterUpdate event...
  9. N

    Subform to requery Main form field

    can you give me some code sample?
  10. N

    Subform to requery Main form field

    "A" field is in subform, "B" field is in main form
  11. N

    Subform to requery Main form field

    Hi, How to requery "B"after entry a new record in "A"
  12. N

    Query from a form unbound field

    Thank You!!
  13. N

    Query from a form unbound field

    Hi, I can't run a query record, when I lookup from a form unbound field Picture1 & 1a is OK by the criteria like "1903*" But in Picture2 , 2a & 2b,it does not seccess
  14. N

    Concatenate Multiple Rows

    Hi, I use the following code in a query... SELECT [tblData].[ID], Conc("Field1","ID",[ID],"tblData") AS Field1, Conc("Field2","ID",[ID],"tblData") AS Field2 FROM tblData GROUP BY [tblData].[ID]; but I want to change the [ID] field from number to text.. so how to change the code?
  15. N

    Change Query Data Format

    I have many records in query, crosstab is too many fields... I think vba is good to me. Thank you so much!
  16. N

    Change Query Data Format

    How to use modules to convert query from A format to B format? A Format 101001 A2 101001 A8 101001 C1 101001 D12 101002 B12 101002 C1 101002 J10 change to...B format 101001 A2, A8, C1, D12 101002 B12, C1, J10 Thanks!
  17. N

    Change query data

    litem Loc 101001 A2 101001 A8 101001 C1 101001 D12 101002 B12 101002 C1 101002 J10 change to... 101001 A2, A8, C1, D12 101002 B12, C1, J10 Thanks!
  18. N

    Open Form change record source

    Thanks so much!!
  19. N

    Open Form change record source

    I need to open "CHECK_OUT_1" form's by different record source, so need to open by different button, can't use Open Event.
  20. N

    Open Form change record source

    Hi, I use this code in form button, to open another form, but is not work... Form!CHECK_OUT_1.Form.RecordSource = "CHECK_OUT_data_1" DoCmd.OpenForm "CHECK_OUT_1", acFormDS, "", "", acReadOnly, acNormal
Back
Top Bottom