I have recently moved over to studio.net and am having trouble connecting to my AccessXP database via any objects, such as a textbox for example. I have my server accessible via "server view" have oledbconenctions, oledbdataadapter and datasets implemented and looking like they're set up properly. but still nothing. I think the problem lies with my dataset as I can select the dataset under bindings, but the only option visible under dataset1 is Table and that is unselectable. Does anyone know how to do this properly? Thanks Here is the code as i have it now minus the additional garbage....

Public Class Form1
Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents DtSet As System.Data.DataSet
Friend WithEvents DbAd As System.Data.OleDb.OleDbDataAdapter
Friend WithEvents OleDbSelectCommand1 As System.Data.OleDb.OleDbCommand
Friend WithEvents OleDbInsertCommand1 As System.Data.OleDb.OleDbCommand
Friend WithEvents OleDbUpdateCommand1 As System.Data.OleDb.OleDbCommand
Friend WithEvents OleDbDeleteCommand1 As System.Data.OleDb.OleDbCommand
Friend WithEvents Conn As System.Data.OleDb.OleDbConnection
Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
Friend WithEvents txtLegTel As System.Windows.Forms.TextBox
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.DtSet = New System.Data.DataSet()
Me.DbAd = New System.Data.OleDb.OleDbDataAdapter()
Me.OleDbDeleteCommand1 = New System.Data.OleDb.OleDbCommand()
Me.Conn = New System.Data.OleDb.OleDbConnection()
Me.OleDbInsertCommand1 = New System.Data.OleDb.OleDbCommand()
Me.OleDbSelectCommand1 = New System.Data.OleDb.OleDbCommand()
Me.OleDbUpdateCommand1 = New System.Data.OleDb.OleDbCommand()
Me.ComboBox1 = New System.Windows.Forms.ComboBox()
Me.txtLegTel = New System.Windows.Forms.TextBox()
CType(Me.DtSet, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'DtSet
'
Me.DtSet.DataSetName = "NewDataSet"
Me.DtSet.Locale = New System.Globalization.CultureInfo("en-US")
'
'DbAd
'
Me.DbAd.DeleteCommand = Me.OleDbDeleteCommand1
Me.DbAd.InsertCommand = Me.OleDbInsertCommand1
Me.DbAd.SelectCommand = Me.OleDbSelectCommand1
Me.DbAd.TableMappings.AddRange(New System.Data.Common.DataTableMapping() {New System.Data.Common.DataTableMapping("Table", "Table1", New System.Data.Common.DataColumnMapping() {New System.Data.Common.DataColumnMapping("Recipe_Number", "Recipe_Number"), New System.Data.Common.DataColumnMapping("Operatori", "Operatori"), New System.Data.Common.DataColumnMapping("Food_Class", "Food_Class"), New System.Data.Common.DataColumnMapping("Directions", "Directions")})})
Me.DbAd.UpdateCommand = Me.OleDbUpdateCommand1
'
'
'ComboBox1
'
Me.ComboBox1.DisplayMember = "Columns1"
Me.ComboBox1.Location = New System.Drawing.Point(16, 224)
Me.ComboBox1.Name = "ComboBox1"
Me.ComboBox1.Size = New System.Drawing.Size(121, 21)
Me.ComboBox1.TabIndex = 0
Me.ComboBox1.ValueMember = "Columns1"
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.ComboBox1})
Me.Name = "Form1"
Me.Text = "Form1"
CType(Me.DtSet, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)

End Sub

#End Region

End Class