Thanks Allen
I am still struggling with this.
I am using Access as the data source for an ASP web page. Every time I run
the query from the ASP page, I get the same record id.
I created a module with the following function:
Public Function CallRandomizer()
Randomize
End Function
I then created a macro named AutoExec that calls CallRandomizer() under the
RunCode action.
I then quit and re-started the database and also closed and reloaded the
browser.
Each time I try to retrieve a random ID from the web page I get the same ID
(186). When I run the query directly from within Access, I always get 186
first, followed by 1291, 1111. If I shut down and restart Access, I will
encounter the same sequence (186, 1291, 1111) after it is re-opened.
So I apparently can't get this to work on any level (ASP or Access).
Do you see what I might be doing wrong?