Am attempting to use Crystal Reports with MySql and am having problem connecting to database.

I have done the following:
1. Started new project
2. Added Reference to MySql.data.dll
3. Created System DSN for My DataBase using MySql Driver - Tests OK
4. Added Form to Project
5. Added CrystalReportViewer to form
6. Create New Report using Crystal Wizard
Create New OLE DB(ADO) Connection
using Mirosoft OLE DB Provider for SQL Server

Here's where I'm getting lost....

Connection info panel asks for Server, User ID, Password and Database
My Connection string that I use in code specifies a Port number as shown below:
Code:
   myConnString = "server=" & "LocalHost" & ";" _
            & "Port=" & "3307" & ";" _
            & "user id=" & "root" & ";" _
            & "password=" & "trims30" & ";" _
            & "database=TRIMS_SQL_DATA"
How do I specify Port Number on the connection panel?
If I continue without port number then I get error "Logon failed - server does not exist"

I'm stuck at this point... Need help going forward please.

Lee