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

C#

 
GeneralRe: How to pass value to unspecified object using delegate C# Pin
OriginalGriff29-Jun-12 21:41
mveOriginalGriff29-Jun-12 21:41 
AnswerRe: How to pass value to unspecified object using delegate C# Pin
Richard Andrew x6430-Jun-12 5:42
professionalRichard Andrew x6430-Jun-12 5:42 
AnswerRe: How to pass value to unspecified object using delegate C# Pin
OriginalGriff29-Jun-12 21:35
mveOriginalGriff29-Jun-12 21:35 
GeneralRe: How to pass value to unspecified object using delegate C# Pin
rongvangso729-Jun-12 23:08
rongvangso729-Jun-12 23:08 
GeneralRe: How to pass value to unspecified object using delegate C# Pin
OriginalGriff29-Jun-12 23:44
mveOriginalGriff29-Jun-12 23:44 
AnswerRe: How to pass value to unspecified object using delegate C# Pin
Pete O'Hanlon30-Jun-12 7:47
mvePete O'Hanlon30-Jun-12 7:47 
GeneralRe: How to pass value to unspecified object using delegate C# Pin
rongvangso730-Jun-12 9:24
rongvangso730-Jun-12 9:24 
QuestionCombo Box Pin
DJCRIS1229-Jun-12 6:35
DJCRIS1229-Jun-12 6:35 
Hello The Code Project

I need help on a project, i have an Access 2010 Database and i want to fill a combo box with one column named "Telephones" From a Table named "SIM"
I've tryed so many ways but i dont know why i can't make it work

Examples:

C#
private void llenarElementos()
        {

            cbo_codsim.Items.Clear();


            int filascod = base_Gps_InfoDataSet.Tables["SIM"].Rows.Count;

            for (int y = 0; y < filascod; y++)
            {
                cbo_codsim.Items.Add(base_Gps_InfoDataSet.Tables["SIM"].Rows[y][1].ToString());
            }

        }


i'm calling that function on the form load..

Also i've tryed to do it by selecting the bindingsource and the table in VS but data don't appear.

If you all need the full code just ask Smile | :)

PD: VS 2008 SP1

Please Help :/
AnswerRe: Combo Box Pin
Kevin Marois29-Jun-12 6:59
professionalKevin Marois29-Jun-12 6:59 
GeneralRe: Combo Box Pin
DJCRIS1229-Jun-12 8:06
DJCRIS1229-Jun-12 8:06 
Questioninserting text into WebBrowser control Pin
Danzy8329-Jun-12 2:30
Danzy8329-Jun-12 2:30 
AnswerRe: inserting text into WebBrowser control Pin
Luc Pattyn29-Jun-12 2:43
sitebuilderLuc Pattyn29-Jun-12 2:43 
AnswerRe: inserting text into WebBrowser control Pin
Manfred Rudolf Bihy29-Jun-12 3:16
professionalManfred Rudolf Bihy29-Jun-12 3:16 
AnswerRe: inserting text into WebBrowser control Pin
Luc Pattyn29-Jun-12 3:26
sitebuilderLuc Pattyn29-Jun-12 3:26 
AnswerRe: inserting text into WebBrowser control Pin
Eddy Vluggen29-Jun-12 3:24
professionalEddy Vluggen29-Jun-12 3:24 
GeneralRe: inserting text into WebBrowser control Pin
Michael Potter29-Jun-12 3:39
Michael Potter29-Jun-12 3:39 
GeneralRe: inserting text into WebBrowser control Pin
Danzy8329-Jun-12 4:43
Danzy8329-Jun-12 4:43 
GeneralRe: inserting text into WebBrowser control Pin
Michael Potter29-Jun-12 5:01
Michael Potter29-Jun-12 5:01 
GeneralRe: inserting text into WebBrowser control Pin
Danzy8329-Jun-12 8:59
Danzy8329-Jun-12 8:59 
GeneralRe: inserting text into WebBrowser control Pin
Michael Potter29-Jun-12 9:27
Michael Potter29-Jun-12 9:27 
QuestionWhen register dll it generate tlb of DevExpress also Pin
MrKBA29-Jun-12 1:59
MrKBA29-Jun-12 1:59 
Questionare you missing a using directive or an assembly reference? Pin
1604198429-Jun-12 0:07
1604198429-Jun-12 0:07 
AnswerRe: are you missing a using directive or an assembly reference? Pin
OriginalGriff29-Jun-12 0:17
mveOriginalGriff29-Jun-12 0:17 
GeneralRe: are you missing a using directive or an assembly reference? Pin
1604198429-Jun-12 0:22
1604198429-Jun-12 0:22 
GeneralRe: are you missing a using directive or an assembly reference? Pin
OriginalGriff29-Jun-12 0:37
mveOriginalGriff29-Jun-12 0:37 

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.