S Soundje Registered User. Local time Today, 07:14 Joined Aug 14, 2014 Messages 27 Aug 15, 2014 #1 Hello everybody, I looking for a simple trick to refresh the data in a subform in vba code? any ideas? thanks a lot, Koen
Hello everybody, I looking for a simple trick to refresh the data in a subform in vba code? any ideas? thanks a lot, Koen
V vbaInet AWF VIP Local time Today, 06:14 Joined Jan 22, 2010 Messages 26,374 Aug 15, 2014 #2 Requery the subform.
J JHB Have been here a while Local time Today, 07:14 Joined Jun 17, 2012 Messages 7,732 Aug 15, 2014 #3 In VBA code: Code: Me.YourSubFormName.Form.Requery
S Soundje Registered User. Local time Today, 07:14 Joined Aug 14, 2014 Messages 27 Aug 15, 2014 #4 Thanks a lot for this informations. best regards Koen