View Single Post
  #1  
Old March 13th, 2007, 10:39 AM posted to microsoft.public.access.forms
crtopher
external usenet poster
 
Posts: 42
Default Column Property of Combo Box

I am using the column property of a combo box, as in:

Me!txtYourDescriptionTextBox = Me!cboYourComboBox.Column(1)

to populate a series of text boxes with the other columns of the row source
of the combo box, then storing the data in another table. On of the columns
contains numbers (which are currency but don't have to be recorded as such)
that have 2 decimal places. Despite setting all the appropriate field formats
to Fixed and 2 decimals, the text box returns the value rounded up.

eg 28.27 returns as 28.00, 34.90 returns as 35.00

Can anyone help me with this. it would be most appreciated

Chris