Gordon Smith (eMVP) wrote:
Quote:
It sounds like you don't have your result set sorted. Saying how to help is
hard since I don't know how exactly you retrieved your result set. If based
off of the base table directly, you need to specify an index to use for
ordering. If based off of a query, you'd want to have an ORDER BY in your
query string. etc.
>
--
Gordon Smith (eMVP)
-- Avnet Applied Computing Solutions
I am just using a basic Access table. I am using customerDataSet,
customersBindingSource, cutomersTableAdapter in C# to load and display
my table. I did see a "sort" property for customerBindingSource and
when I told it to sort by "Ticket ID" (the ticket number) it worked! I
guess since my primary key was "Ticket ID" and it was set to auto
increment, when I told it to sort by that, it sorted them in ascending
order and now it seems to work (or at least with the database on the
local machine). I will put the database back on the server later today
and see what happens. I am asuming that what I did is sort of what you
where saying, either way thank you for your hekp.