Find Specific Record

  • Thread starter Thread starter JennKriv
  • Start date Start date
J

JennKriv

I want to have a find macro that will work something like the [Event
Procedure], but I'm not sure how to do it. I like the macro better because it
allows me to always leave it at "any part of" but I can't seem to find the
place where I tell it to only look at it in a specific box. (i.e.
[TrackingNum]). Is this even possible with a macro and if so what codeing and
action type do I use?
 
Jenn,

Have a look at the FindRecord macro action. In the 'Find What'
argument, you can refer to the control on your form where the criteria
is to be found, using suyntax such as:
=[TrackingNum]
You usually have to use a GoToControl action in a macro like this, to
set the focus to the bound control that defines what you are looking
for. Hope that makes sense. If you need more help with this, please
supply more explicit details of what you are doing.
 
Back
Top