The username looks incorrect, you should not have a user on the SQL server with the username DBO
Create a user on SQL server called say 'forumuser' then give it DBO permissions on the blank forum database you have created, then in the connection file give forumuser as the username and use the password you setup for this user on the SQL server.
Also the name of your database looks wrong, you don't put in the path with SQL server just the database name:-
strSQLServerName = "
localhost\SQLEXPRESS" 'Holds the name of the SQL
Server (This is the name/location or IP address of the SQL Server)
strSQLDBUserName = "
forumuser" 'Holds the user name (for SQL Server Authentication)
strSQLDBPassword = "
your_password_here" 'Holds the password (for SQL Server Authentication)
strSQLDBName = "
forums" 'Holds the name of the database
Edited by -boRg- - 30 March 2007 at 5:18pm