A family of Microsoft relational database management systems designed for ease of use.
Option one: put the following in the criteria of the query, instead of #05/06/2013#:
[Forms]![frmOne]![DateOne]
Option 2: remove the condition from the query, and use the following code to open frmTwo from frmOne:
DoCmd.OpenForm _
FormName:="frmTwo", _
WhereCondition:="DateTwo=#" & Format(Me.DateOne, "yyyy-mm-dd") & "#"