Note: very simple system to provide convenient management information from a single table obtained by combining data from three tables using sql.
I have:
Made sure the cdx is indeed present and functional
Built project, exe, and used inno setup to compile install
Works fine on my win 10 computer and wife's win 7
Called the code from a method in the load of the form.
Moved the code into a prg instead to no effect
Put the install in dropbox so no question all are from same source
Placed a messagebox just prior to the problem to make sure we are right there.
(obviously getting a bit desperate by now)
Nevertheless, my primary user (also on win 10) gets the 1707 cdx not found error
The "offending code"
SELECT r.pin_player as id,r.rating,MAX(r.elab_date) as rate_date ;
FROM ratings r LEFT OUTER JOIN agamembers a ON a.id = r.pin_player ;
GROUP BY r.pin_player ;
INTO CURSOR cur_ratings ;
readwrite
I attach the errorlog from the version with the code in the method called from load
I have:
Made sure the cdx is indeed present and functional
Built project, exe, and used inno setup to compile install
Works fine on my win 10 computer and wife's win 7
Called the code from a method in the load of the form.
Moved the code into a prg instead to no effect
Put the install in dropbox so no question all are from same source
Placed a messagebox just prior to the problem to make sure we are right there.
(obviously getting a bit desperate by now)
Nevertheless, my primary user (also on win 10) gets the 1707 cdx not found error
The "offending code"
SELECT r.pin_player as id,r.rating,MAX(r.elab_date) as rate_date ;
FROM ratings r LEFT OUTER JOIN agamembers a ON a.id = r.pin_player ;
GROUP BY r.pin_player ;
INTO CURSOR cur_ratings ;
readwrite
I attach the errorlog from the version with the code in the method called from load