ASKER
ASKER
As Excel is a "free text tool", you have no control of what they do and whereSo far I am only exposing this for sorting purposes, although if that turns out to work well they may request additional functionality, will worry then..
Really what you need to understand is why the users are asking for the functionality they areSo far the only request was to be able to sort them the easiest way possible, like if there are 20 records and they want move the last 5 somewhere in middle, they should not have to edit each individual record, instead just selecting and dragging them to the desired place.
ASKER
Unless you specify something else, that is the default sort key in Access. A sort column will assist there
You are then dependant on the users updating the sort columnActually this brings me to think of a different approach, the same as you're referring to, just instead of having the users doing it, perhaps its possible to have code to open that excel file and run a macro that updates the excel's sort column in order they are saved, then run an update query in access joining both ID fields..
Using the top, height, and width properties, you can let them select a block of records.well, this sounds better then previous suggestions, as users can move records without editing them, however would still wait if someone can suggest something with Excel as that would definitely satisfy users requirement (for the moment..).
ASKER
conn.Open "DRIVER={Microsoft Text Driver (*.txt; *.csv)};DBQ=C:\Application;"
rs.Open "SELECT * FROM [Applications.csv]", conn, adOpenStatic, adLockReadOnly, adCmdText
rs.MoveFirst...
I tested now with two records and was reading in saved order, then I manually changed order and saved, and the code was reading in the modified order, wondering if we can rely on that?ASKER
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
Yes, you can add sort columns and write code so that they can display records in whatever order they want. Columns can be dragged and dropped to change their order on forms. Beyond that, you're going to spend a lot of effort for not much gain.
Kelvin