Showing dates on a new form

RichieP

Rock on!
Local time
Today, 06:39
Joined
Apr 16, 2003
Messages
48
When two dates are selected and the gender button is pressed, it brings back a form based on the query (I.e. the number of records between the two dates given by gender). All I need is the two dates that appear in the unbound text boxes (ealiest and latest dates) to appear somewhere on the form that comes up after the gender button is pressed (the form is called: Extraform_Date of determination between two dates GENDER.)

Any help given is appreciated!


Have a look . . . . .
NOTE: It's access 97'
 

Attachments

You could use dmin and dmax on the query to return the dates.
 
Put this on your Form's Load event:

Code:
Private Sub Form_Load()
    Label12.Caption = "By gender between entered " & Forms!Frmmain!txtDate1 & " And " & Forms!Frmmain!txtDate2
End Sub

The form you have called: Extraform_Date of determination between two dates GENDER.
 

Users who are viewing this thread

Back
Top Bottom