J
Josh Sharpe
I'm trying to do the same thing now with a different combo box - but this
combo box is the one that is circularly related. I've pretty much figured
out all the code you sent to me except the AS clause. I'm not sure where
you got the DisplayAddress string from. Where did you get that so I can
apply why you gave me to other combo boxes??
The string you gave me, and i've since modified:
SELECT tblAddress.AddressID, [StreetAddress] & " " & [City] & ", " & [State]
& " " & [ZipCode] & " " & [HomePhone] AS DisplayAddress,
tblAddress.StreetAddress, tblAddress.City, tblAddress.State,
tblAddress.ZipCode, tblAddress.HomePhone FROM tblAddress;
Is DisplayAddress some property somewhere that I can't find?
The other combo box:
SELECT tblCommunity.CommunityID, [FirstName] & " " & [LastName] AS ?????,
tblCommunity.FirstName, tblCommunity.LastName FROM tblCommunity;
-Josh
combo box is the one that is circularly related. I've pretty much figured
out all the code you sent to me except the AS clause. I'm not sure where
you got the DisplayAddress string from. Where did you get that so I can
apply why you gave me to other combo boxes??
The string you gave me, and i've since modified:
SELECT tblAddress.AddressID, [StreetAddress] & " " & [City] & ", " & [State]
& " " & [ZipCode] & " " & [HomePhone] AS DisplayAddress,
tblAddress.StreetAddress, tblAddress.City, tblAddress.State,
tblAddress.ZipCode, tblAddress.HomePhone FROM tblAddress;
Is DisplayAddress some property somewhere that I can't find?
The other combo box:
SELECT tblCommunity.CommunityID, [FirstName] & " " & [LastName] AS ?????,
tblCommunity.FirstName, tblCommunity.LastName FROM tblCommunity;
-Josh