The example data (F26776) suggests this is a Text field, not a Number field.
If it is a Text field, the value need to be in quotes, i.e.:
rst.FindFirst "[CDCnum] = """ & Me.cboInmate_Select & """"
If those quotes don't make sense, see:
Quotation marks within quotes
at:
http://allenbrowne.com/casu-17.html
Note that cboInmate must be an *unbound* control (so it doesn't try to save
this value). It may also be a good idea to explictly save the current record
before trying to find another one:
If Me.Dirty Then Me.Dirty = False

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have a form (InmateSelect) where I am trying to use an unbound combo box
> (cboInmateSelect) to select records from a table named Downinfo. The
[quoted text clipped - 31 lines]
> Thanks
> Ducat assignment
DucateAssignment - 15 Dec 2006 22:44 GMT
Allen
I've played around with this issue for about a week and you tell me to use
quotation marks and this works. I've looked in three different books and
still had no idea. I thank you very much.
DucatAssignment
>The example data (F26776) suggests this is a Text field, not a Number field.
>
[quoted text clipped - 16 lines]
>> Thanks
>> Ducat assignment