I have a form with a Frame containing three option buttons, which return the values 1, 2 or 3.
However I want the underlying database field to contain "Book", "Video" or "DVD" (rather than 1, 2 or 3).
As the Option values can only be numeric, how do i get the text values into the table?
So far I have the following code (which fails) :
Code:Private Sub Frame1_AfterUpdate() If Me.Frame1 = 1 Then tblBooks!Resource = "Book" End If End Sub