VB.NET

Moderators: seancampbell
Number of threads: 4020
Number of posts: 10026

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Simple Data Binding Posted by wvbotha on 6 Feb 2007 at 6:46 PM
i need to list users ids on a combo box from users table. i'm using dataset from component.but it retrives only 1st record. i used C# to component and vb.net in desktop application.please, some one help
me. i need to retrive all user ids to combo box.


component :


public SqlConnection Con;
public SqlCommand Com;
public SqlDataReader DR;
public SqlDataAdapter AD;
public DataSet DS;
public DataTable DT;
int result;
public string SCon;
SqlCon .SqlCon ConObj=new SqlCon.SqlCon();

public Class1()
{ }

public DataSet RetriveEMP()

{
SCon=ConObj.SetConnection();
Con=new SqlConnection(SCon);
Con.Open();
AD= new SqlDataAdapter("select * from users", Con);
DS=new DataSet();
AD.Fill(DS,"users");
return DS;
}//End Of DataSet RetriveEMP()


Desktop Application:


Public Function am()
Try
Dim a As New ClassLibrary1.Class1
Dim dsa As New DataSet
dsa = a.RetriveEMP()
Dim dt As DataTable
dt = dsa.Tables(0)
ComboBox1.DataBindings.Add("Text", dt, "cEmpID")

Catch Ex As Exception
MsgBox(Ex.Message)
End Try

End Function



Report
Re: Simple Data Binding Posted by PavlinII on 12 Feb 2007 at 8:55 AM
: i need to list users ids on a combo box from users table. i'm using dataset from component.but it retrives only 1st record. i used C# to component and vb.net in desktop application.please, some one help
: me. i need to retrive all user ids to combo box.
:
:
: component :
:
:
: public SqlConnection Con;
: public SqlCommand Com;
: public SqlDataReader DR;
: public SqlDataAdapter AD;
: public DataSet DS;
: public DataTable DT;
: int result;
: public string SCon;
: SqlCon .SqlCon ConObj=new SqlCon.SqlCon();
:
: public Class1()
: { }
:
: public DataSet RetriveEMP()
:
: {
: SCon=ConObj.SetConnection();
: Con=new SqlConnection(SCon);
: Con.Open();
: AD= new SqlDataAdapter("select * from users", Con);
: DS=new DataSet();
: AD.Fill(DS,"users");
: return DS;
: }//End Of DataSet RetriveEMP()
:
:
: Desktop Application:
:
:
: Public Function am()
: Try
: Dim a As New ClassLibrary1.Class1
: Dim dsa As New DataSet
: dsa = a.RetriveEMP()
: Dim dt As DataTable
: dt = dsa.Tables(0)
: ComboBox1.DataBindings.Add("Text", dt, "cEmpID")
:
: Catch Ex As Exception
: MsgBox(Ex.Message)
: End Try
:
: End Function
:
:
:
:
Try this instead of DataBindings.
  ComboBox1.ValueMember = "cEmpID"
  ComboBox1.DataSource = dt


Pavlin II[/size]

Don't take life too seriously anyway you won't escape alive from it!





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.