Hi
In the Access DB I had the table "FORUM_MEMBERS". I did copy that table and gave it the name "FORUM_MEMBERS_NEW" because I was doing some tests.
After the test I renamed:
"FORUM_MEMBERS" to "FORUM_MEMBERS_OLD" and
"FORUM_MEMBERS_NEW" to "FORUM_MEMBERS"
I use the table named "FORUM_MEMBERS" with my forum.
I did NOT change the table's structure (only the data)
But now all my new members (all my members are located in the table "FORUM_MEMBERS") get the following error when they try to reply topics:
Microsoft JET Database Engine error '80004005'
You cannot add or change a record because a related record is required in table 'FORUM_MEMBERS_OLD'.
/snitz/post_info.asp, line 990
But there is no table "FORUM_MEMBERS_OLD" I'm using anymore.
Why does the program think that?
Line 990 is:
my_Conn.Execute (strSql),,adCmdText + adExecuteNoRecords
Anyone 