ijsrog 0 Newbie Poster

Hi,

I used following code to retrieve data from DB source to my form. It works but for 1 thing; values are rounded down to 1st available integer, no decimals for currency values for example. What should I be doing to retrieve the exact values with decimals and all?

Private Sub Dialog1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        'TODO: This line of code loads data into the 'Database1DataSet.VBTable' table. You can move, or remove it, as needed.

        Me.VBTableTableAdapter.Fill(Me.Database1DataSet.VBTable)

    End Sub

TY