I was able to duplicate your error in a test environment on my computer.
It looks like you need to designate a user and a password in your connection string.
You have:
Protected Const CONN = "user id="";password=; initial " & "catalog=NorthwindSQL;server=local"
It should read:
Protected Const CONN = "user id=" & YourUserNameHere & ";password=" & YourPassWordHere & "; initial " & "catalog=NorthwindSQL;server=local"
You need to either hard code a user and a password (not generally a good idea from a security standpoint), or present a login screen and get the information that way.
I hope this helps, and good luck!
Best Regards,
Earl Francis