I have a situation that needs to handle millions of rows in Ms Access.
The data come from a SQL server and in normal cases a continuous form would be just right but the rows its the only issue as i have table with many columns.
So i started examining alternatives like ListView or MsFlexGrid...what troubles me is that i would like to have something lazy loading....the first 1000 rows load and then the user as scrolls down/up the next set of data are loaded.
I have tested this functionality some years with DGV on a small .NET application but i haven't seen anything similar in Access + ActiveX control, something to add is the necessity for the control to display the total rows that are eligible for retrieval...eg. 100,000 rows but only loading sets of 1000...
I also need this to be a free solution ..
Any ideas....
I am afraid that documentation for such kind of extended Controls is quite old and i stumble on dead sites...so a good direction would be great.
Last but not least...no editing would be necessary..simply for viewing.
Handle millions of records ListView or MsFlexGrid
749 Views Asked by John At
1
There are 1 best solutions below
Related Questions in LISTVIEW
- Sorting a List by its property renames all the objects in the List
- How do a create a reusable simple custom list style with my own color and spacing
- toggle button state of 2 buttons within listview row
- how can I add list of categories to my body in flutter? please I'm new to it
- Groups style list view in swiftui
- Impossible to trigger textWatcher from ListViewAdapter
- Why flutter's listview go to the backgroud of a textfiled in the same Column?
- using powershell windows forms create a listview with Multi Line Headers
- MAUI Group ListView issue while expanding and collapsing header item are going in hidden state
- CustomScrollView with center key and mulitple slivers: Expand widgets in different directions
- Flutter/Dart: How to force PrefPage using a ListView to refresh screen?
- Android Material 3 Light theme LIstView items text hidden
- SharePoint Online JSON Formatting Working on Edit Form but not in List view
- Kotlin code reports "None of the following functions can be called with the arguments supplied"
- Listview issue in javafx
Related Questions in MS-ACCESS
- Ctrl+' for copying from previous record in MS Access not working bilingual in Access 2016
- Updating Access Database using C# and stored procedure does not work
- SQL Left Join not including desired rows
- Published MAUI app doesn't work with access database
- Microsoft access sql query to update last record
- Syntax error in FROM clause C# and MSAccess
- sum function in a report
- Excel column datatype issues using MSADO and Access 2016 Engine driver
- Monitor Scaling Issue for Moveable Access Form using MoveWindow win32 API
- ms-access email electronic signiture
- "Make Trusted Document" warning doesn't trigger until exit, causing "Can't exit now" error
- How to compile java gdal PGEO on apple silicon MacOS to read mdb file?
- Access won't open past the splash screen
- Access, Relationship. Too complicated Syntax?
- Table Update from a form using VBA
Related Questions in ACTIVEX
- Excel 2019 ActiveX combobox as dropbox does not show all items after a selection is made
- Edit Excel Cell with ActiveX
- Powershell script to launch my web app in chrome with maximized window
- pyautocad & ActiveX: pywintypes.com_error, AddTable & wrong parameters
- Excel sheet with both Form Control and ActiveX Check Boxes with Macro to change the colour when selected
- When I insert a Word file as an object into PowerPoint, the macros in the Word file no longer work
- Using Interaction.CreateObject("Outlook.Application") with new version of Outlook does not work
- How can ActiveX control elements in a word document be parsed?
- VBA ActiveX Label Transparency
- Excel ActiveX control checkbox not updating and not reacting after the first click on it
- Removing thick border when activex checkbox is not checked
- Adding Horizontal and/or Vertical borders with VBA
- MS Excel 365 bug with simple ActiveX Control
- Copying / Pasting My Workbook Project To Another Computer Skews The Sheets Layout - How To Prevent The Skewing?
- How can I create in IronPython a Variant holding an array of doubles to be passed to AutoCad?
Related Questions in MSFLEXGRID
- How to set a data comparing with row and column of msflexgrid in vb6
- Group Values in Flexgrid Vb6
- How to calculate the number of visible columns in a MSFLEXGRID
- Primeflex Flexgrid support for IE11? any workaround to get the flexgrid working on IE?
- mark in msflexgrid days holidays from database
- Why are all rows selected in MSFlexGrid when I select the last row?
- Looping through MsFlexGrid rows
- Late binding with COM objects (flexgrid) is 2 times slower than early binding
- Handle millions of records ListView or MsFlexGrid
- Drag and drop rows between two datatable using msflexgrid
- Unselect/deselect row in DataGridView on click
- VB6 MSFlexGrid - Unable to set columns and rows count at runtime
- Object variable not set (Error 91)
- wijmo FlexGrid implementation with angularjs
- VBA FlexGrid selected rows to array
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is really zero reason to pull or have a form scroll past 1000’s of records. Such a process is sheer torture to users.
For what possible reason would you want users to scroll past 1 million rows in a form? I don't think software developer skills are required here that such a approach REALLY needs to be avoided.
The solution is to simply ask, or get some search criteria BEFORE you fill the form with results.
This form works great on tables with 1 million rows. You type in the first name, and then perhaps a bit of the last name. You then fill the form with JUST the results.
Even on tables with huge numbers of rows, it performs instant.
The form can look like this access example:
The code behind a search button looks like this:
The above will performance near instant – even if the form is based on a linked table to sql server.
Floating the idea to try and pull and page 1 million rows makes ZERO sense in Access, .net, or any web based application. To avoid sheer torture to users, simply add some kind of filter or search criteria.
Access as a client to SQL server will ONLY pull records down the network pipe based on the criteria – the whole table is not pulled, and SHOULD not be pulled nor should some messy paging approach be attempted here.
I should also point out that the above example is a simple Access continues form - no activeX or grid control is required - the feature set you required is built right into Access.