Spread Windows Forms 9.0 Product Documentation > Developer's Guide > Managing Data Binding > Tutorial: Binding to a Corporate Database (Older Visual Studio) > Step 6: Improving the Display by Changing the Cell Type |
In this step, you will change the cell type for one of the columns to better display the data from the database.
Run your project and you should see a form that looks similar to the following:
C# |
Copy Code
|
---|---|
FarPoint.Win.Spread.CellType.CurrencyCellType CurrCell = new FarPoint.Win.Spread.CellType.CurrencyCellType(); CurrCell.DecimalPlaces = 2; CurrCell.CurrencySymbol = "US$"; fpSpread1.Sheets[0].Columns[3].CellType = CurrCell; |
VB |
Copy Code
|
---|---|
Dim CurrCell As New FarPoint.Win.Spread.CellType.CurrencyCellType() CurrCell.DecimalPlaces = 2 CurrCell.CurrencySymbol = "US$" FpSpread1.Sheets(0).Columns(3).CellType = CurrCell |
You have managed data binding to a corporate database using Spread. You have completed this tutorial.
Review the list of steps for Tutorial: Binding to a Corporate Database (Older Visual Studio).