Crystal is readily available in VS2005 standard edition upwards. Express does not contain Crystal Reports. If you are converting Access into Sql then all you have to do is change all of your OleDb (if your using OleDb) classes to its Sql Counterpart. Here's a minor list:
Imports System.Data.OleDb = Imports.System.SqlClient
OleDbConnection = SqlConnection
OleDbDataAdapter = SqlDataAdapter
OleDbCommand = SqlCommand
...
cheers,
Paul June A. Domag