BlueJacket
Registered User.
- Local time
- Today, 10:38
- Joined
- Jan 11, 2017
- Messages
- 90
I'm not sure why this is happening.
I have a listbox that is displaying six fields: Client, County, Street Number, Street Name, Case Number, and Judge Name. The row source of the list box also has many other fields that are not displayed, some of which are dates.
Row Source:
In my text box, I have
And it returns nothing. Columns 1-6 work, but it stops working at 7.
Thank you in advance.
I have a listbox that is displaying six fields: Client, County, Street Number, Street Name, Case Number, and Judge Name. The row source of the list box also has many other fields that are not displayed, some of which are dates.
Row Source:
Code:
SELECT qryMainSearchAll.Client, qryMainSearchAll.CountyID AS County,
qryMainSearchAll.StreetNumber AS [St Num], qryMainSearchAll.StreetName AS [Street Name],
qryMainSearchAll.CaseNumber AS [Case Number], qryMainSearchAll.JudgeName AS [Judge Name],
qryMainSearchAll.PropertyID, qryMainSearchAll.RipenDate, qryMainSearchAll.PaperworkSentDate,
qryMainSearchAll.ResponseDeadlineDate, qryMainSearchAll.AmountReceived FROM
qryMainSearchAll ORDER BY qryMainSearchAll.Client, qryMainSearchAll.CountyID;
In my text box, I have
Code:
=[lboMainSearchResults].[column](7)
And it returns nothing. Columns 1-6 work, but it stops working at 7.
Thank you in advance.