Click here to Skip to main content
15,887,434 members
Home / Discussions / C#
   

C#

 
Questionhow to fill a combobox with a class Pin
adrian salas27-Apr-11 11:11
adrian salas27-Apr-11 11:11 
AnswerRe: how to fill a combobox with a class Pin
gavindon27-Apr-11 11:17
gavindon27-Apr-11 11:17 
AnswerRe: how to fill a combobox with a class Pin
sanforjackass27-Apr-11 11:20
sanforjackass27-Apr-11 11:20 
AnswerRe: how to fill a combobox with a class Pin
walterhevedeich27-Apr-11 14:51
professionalwalterhevedeich27-Apr-11 14:51 
AnswerRe: how to fill a combobox with a class [EDITED] Pin
Łukasz Nowakowski27-Apr-11 21:24
Łukasz Nowakowski27-Apr-11 21:24 
GeneralRe: how to fill a combobox with a class [EDITED] Pin
adrian salas28-Apr-11 6:11
adrian salas28-Apr-11 6:11 
GeneralRe: how to fill a combobox with a class [EDITED] Pin
Łukasz Nowakowski28-Apr-11 10:17
Łukasz Nowakowski28-Apr-11 10:17 
GeneralRe: how to fill a combobox with a class [EDITED] Pin
adrian salas29-Apr-11 10:29
adrian salas29-Apr-11 10:29 
Hi,

I did it as you told me:

protected override void OnLoad(object sender, EventArgs e)
{
BDconexion bdConex = new BDconexion();
string nacionalidad = "select * from cs_nacionalidad";
try
{

//open connection
bdConex.OpenConnection();
//create command and assign the query and connection from the constructor
MySqlDataAdapter da = new MySqlDataAdapter(nacionalidad, bdConex.conn);
//create dataset
DataSet ds = new DataSet();
// filling dataset
da.Fill(ds, "cs_nacionalidad");
//dataset values
NationSelector1.DataSource = ds.Tables["cs_nacionalidad"];
NationSelector1.DisplayMember = "nm_nacionalidad";
NationSelector1.ValueMember = "cd_nacionalidad";
//close connection
bdConex.CloseConnection();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

But I am having problem with these lines:

NationSelector1.DataSource = ds.Tables["cs_nacionalidad"];
NationSelector1.DisplayMember = "nm_nacionalidad";
NationSelector1.ValueMember = "cd_nacionalidad";

what is the name that I should write instead of NationSelector1?

thanks.
GeneralRe: how to fill a combobox with a class [EDITED] Pin
Łukasz Nowakowski1-May-11 7:24
Łukasz Nowakowski1-May-11 7:24 
GeneralRe: how to fill a combobox with a class [EDITED] Pin
adrian salas2-May-11 13:44
adrian salas2-May-11 13:44 
AnswerRe: how to fill a combobox with a class Pin
minnie mouse28-Apr-11 1:02
minnie mouse28-Apr-11 1:02 
QuestionProcess Pin
viliam27-Apr-11 10:19
viliam27-Apr-11 10:19 
QuestionInput validation [modified] Pin
jashimu27-Apr-11 9:06
jashimu27-Apr-11 9:06 
AnswerRe: Input validation Pin
Pete O'Hanlon27-Apr-11 9:25
mvePete O'Hanlon27-Apr-11 9:25 
GeneralRe: Input validation Pin
jashimu27-Apr-11 9:39
jashimu27-Apr-11 9:39 
GeneralRe: Input validation Pin
Pete O'Hanlon27-Apr-11 10:02
mvePete O'Hanlon27-Apr-11 10:02 
AnswerRe: Input validation Pin
walterhevedeich27-Apr-11 14:54
professionalwalterhevedeich27-Apr-11 14:54 
GeneralRe: Input validation Pin
Pete O'Hanlon27-Apr-11 15:11
mvePete O'Hanlon27-Apr-11 15:11 
QuestionHow can i add A Linklable by calling a function in a class? Pin
Arunkumar.Koloth27-Apr-11 8:57
Arunkumar.Koloth27-Apr-11 8:57 
AnswerRe: How can i add A Linklable by calling a function in a class? Pin
Pete O'Hanlon27-Apr-11 9:04
mvePete O'Hanlon27-Apr-11 9:04 
QuestionRe: How can i add A Linklable by calling a function in a class? Pin
Arunkumar.Koloth27-Apr-11 10:48
Arunkumar.Koloth27-Apr-11 10:48 
AnswerRe: How can i add A Linklable by calling a function in a class? Pin
Pete O'Hanlon27-Apr-11 10:52
mvePete O'Hanlon27-Apr-11 10:52 
QuestionRe: How can i add A Linklable by calling a function in a class? Pin
Arunkumar.Koloth27-Apr-11 11:34
Arunkumar.Koloth27-Apr-11 11:34 
AnswerRe: How can i add A Linklable by calling a function in a class? Pin
Pete O'Hanlon27-Apr-11 14:49
mvePete O'Hanlon27-Apr-11 14:49 
QuestionRe: How can i add A Linklable by calling a function in a class? Pin
Arunkumar.Koloth27-Apr-11 18:02
Arunkumar.Koloth27-Apr-11 18:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.