D
DS
I have two fields the first one holds the number of the month.
Such as 01,02 etc.... This is TxtMonth
The second one holds the date
Such as 2001,2002 etc...This is TxtYear
From another form I pick the values and put them into an unbound field
such as...Forms!Form1!TxtExpDate = Me.TxtMonth & " / " & Me.TxtYear
Resulting in TxtExpDate 01 / 2002
After which I do SQL UPDATE to insert the value into a field in a table.
The problem is I'm not getting the same info. How can I insert this
value into the table so that it ends up the way it should?
Thanks
DS
Such as 01,02 etc.... This is TxtMonth
The second one holds the date
Such as 2001,2002 etc...This is TxtYear
From another form I pick the values and put them into an unbound field
such as...Forms!Form1!TxtExpDate = Me.TxtMonth & " / " & Me.TxtYear
Resulting in TxtExpDate 01 / 2002
After which I do SQL UPDATE to insert the value into a field in a table.
The problem is I'm not getting the same info. How can I insert this
value into the table so that it ends up the way it should?
Thanks
DS