Click here to Skip to main content
15,886,093 members
Home / Discussions / C#
   

C#

 
GeneralRe: RDLC print icon not displayed in Mozilla Firefox Pin
yesu prakash27-Apr-11 22:45
yesu prakash27-Apr-11 22:45 
AnswerRe: RDLC print icon not displayed in Mozilla Firefox Pin
thatraja27-Apr-11 22:50
professionalthatraja27-Apr-11 22:50 
AnswerRe: RDLC print icon not displayed in Mozilla Firefox Pin
RaviRanjanKr29-Apr-11 10:08
professionalRaviRanjanKr29-Apr-11 10:08 
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 
You can create a class, that derives from ComboBox, and there you do
protected override void OnLoad(EventArgs e)
{
    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
        cboNacionalidad.DataSource = ds.Tables["cs_nacionalidad"];
        cboNacionalidad.DisplayMember = "nm_nacionalidad";
        cboNacionalidad.ValueMember = "cd_nacionalidad";
        //close connection
        bdConex.CloseConnection();
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

And then use this class, where you want ComboBox to contain this data.
Don't forget to rate answer, that helped you. It will allow other people find their answers faster.

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 
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 

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.