need immediate help with forms coding - will pay

J

jean

Hi,
I need to find someone who has skills to code a form that contains date text
boxes to change the date range of a recordset for a subform - will pay
US$15/hr. I have paypal account to pay you.
I may also need other help on this project. Estimate between 4-8hrs work
required. Need someone who can work on it now.
email (e-mail address removed)
and remove "XX-NO__SPAMXX"
thanks.
 
J

John Vinson

I need to find someone who has skills to code a form that contains date text
boxes to change the date range of a recordset for a subform - will pay
US$15/hr. I have paypal account to pay you.

Well, my consulting rate is considerably higher than that... but how
about getting the answer for free?

Use a form with two textboxes, txtFrom and txtTo. These should have
*nothing* in the Control Source property; they're unbound textboxes.

Base the Subform on a query with a criterion

BETWEEN CDate(NZ[Forms]![yourform]![txtFrom],#1/1/100#)) AND
CDate(NZ([Forms]![yourform]![txtTo],#12/31/9999#))

Requery the subform in the AfterUpdate event of each textbox:

Private Sub txtFrom_AfterUpdate()
Me!subformname.Requery
End Sub

John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top