View Full Version : Empty Field - but NOT really


halem2
10-18-2007, 10:27 AM
Hello World:

I have two tables, one called Assets and the other table called Job Sites.

the Assets table has several fields
AssetID - autonumber
plus others

the Job Sites table has two fields
JobSiteID - autonumber
JobSite - text (with about 22 names in it)

the I add the JobSite to the Assets table (hiding the JobSiteID) it shows me the expected drop down box but it is BLANK. If I click on any of the BLANK spaces in the drop down, it populates the field.

It is behaving as if the font color was white.

Any ideas??? I am baffled. :confused: :confused:

RuralGuy
10-18-2007, 11:24 AM
If you are describing a ComboBox then please post:
1-RowSourceType
2-RowSource
3-BoundColumn
4-ColumnCount
5-ColumnWidths
6-ListWidth

halem2
10-18-2007, 11:29 AM
as requested...

1-RowSourceType - table/Query
2-RowSource - SELECT tblJobSites.JobID, tblJobSites.JobSite FROM tblJobSites ORDER BY [JobSite];
3-BoundColumn - 1
4-ColumnCount - 2
5-ColumnWidths - .5";1.5"
6-ListWidth - 2"

CraigDolphin
10-18-2007, 11:31 AM
Change

5-ColumnWidths - .5";1.5"

to

5-ColumnWidths - 0";1.5"

RuralGuy
10-18-2007, 11:35 AM
Any chance you are using ac2003 with SP3 applied?

-From Allen Browne's site: New bugs in SP3 for Access 2003

1. The combo goes blank if it's RowSource is a table field that has something in its Format property.

halem2
10-18-2007, 11:49 AM
yes I do have sp3 installed. Any workaround you know of?

thanks 4 ur help RG.

RuralGuy
10-18-2007, 11:51 AM
Remove whatever you have in the Format property of the field? Uninstall SP3?

halem2
10-18-2007, 12:35 PM
yeap. removing the formatting works just fine.
thanks again.:D

RuralGuy
10-18-2007, 01:06 PM
Cool...now we both know what the solution is for that symptom. Thanks for posting back.