Click here to Skip to main content
15,922,533 members
Home / Discussions / C#
   

C#

 
QuestionAdding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 20:08
professionalVimalsoft(Pty) Ltd15-Jan-09 20:08 
AnswerRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa15-Jan-09 20:21
Guffa15-Jan-09 20:21 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 20:36
professionalVimalsoft(Pty) Ltd15-Jan-09 20:36 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa15-Jan-09 20:53
Guffa15-Jan-09 20:53 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 21:00
professionalVimalsoft(Pty) Ltd15-Jan-09 21:00 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Giorgi Dalakishvili15-Jan-09 22:18
mentorGiorgi Dalakishvili15-Jan-09 22:18 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa16-Jan-09 1:20
Guffa16-Jan-09 1:20 
QuestionArrayList as member of another array list Pin
ptr_Electron15-Jan-09 19:49
ptr_Electron15-Jan-09 19:49 
I am trying to add a Arraylist, as a member to another array list.
The problem is, All the members of GroupReqAL are contain the final values of ReqAL. When I debug, first run is fine, in the 2 nd run the ReqAL is added both GroupReqAL[0] and GroupReqAL[1] are set to the latest values of ReqAL and in the 3 rd run GroupReqAL[0] ,GroupReqAL[1],GroupReqAL[2] are set to the latest values of ReqAL... and soon, finally all the members of GroupReqAL containts the latest values of ReqAL. Please advice


int i=0;
        int j=0;
        ArrayList GroupReqAL=new ArrayList();
        ArrayList ReqAL=new ArrayList();

        while(i<100)
        {
            while(j<10) 
            {
                ReqAL.Add(j*i);
                j++;
            }
              
            GroupReqAL.Add(ReqAL);
            i++;
        }

AnswerRe: ArrayList as member of another array list Pin
Guffa15-Jan-09 20:25
Guffa15-Jan-09 20:25 
QuestionHow to Create MouseDoubleClick Event in C# Pin
raj23136215-Jan-09 19:32
raj23136215-Jan-09 19:32 
AnswerRe: How to Create MouseDoubleClick Event in C# Pin
dan!sh 15-Jan-09 21:11
professional dan!sh 15-Jan-09 21:11 
Questionhow to use the listviewitem... Pin
lincyang15-Jan-09 19:30
lincyang15-Jan-09 19:30 
AnswerRe: how to use the listviewitem... Pin
SeMartens15-Jan-09 21:15
SeMartens15-Jan-09 21:15 
GeneralRe: how to use the listviewitem... Pin
lincyang20-Jan-09 14:56
lincyang20-Jan-09 14:56 
QuestionImplementation of kerberos in web application without using WSE Pin
lachu00915-Jan-09 19:29
lachu00915-Jan-09 19:29 
QuestionAbout downloading file Pin
tauras8115-Jan-09 18:10
tauras8115-Jan-09 18:10 
AnswerRe: About downloading file Pin
N a v a n e e t h15-Jan-09 19:03
N a v a n e e t h15-Jan-09 19:03 
AnswerRe: About downloading file Pin
ashok_rgm20-Jan-09 0:01
ashok_rgm20-Jan-09 0:01 
AnswerRe: About downloading file Pin
Shyam K Pananghat23-Feb-09 3:18
Shyam K Pananghat23-Feb-09 3:18 
QuestionDataGrid Textbox will not apply value unless enter is pushed Pin
Brad Wick15-Jan-09 17:46
Brad Wick15-Jan-09 17:46 
AnswerRe: DataGrid Textbox will not apply value unless enter is pushed Pin
Aghosh Babu15-Jan-09 18:05
Aghosh Babu15-Jan-09 18:05 
GeneralRe: DataGrid Textbox will not apply value unless enter is pushed Pin
Brad Wick16-Jan-09 6:20
Brad Wick16-Jan-09 6:20 
AnswerRe: DataGrid Textbox will not apply value unless enter is pushed Pin
Mogesh17-Apr-09 0:35
Mogesh17-Apr-09 0:35 
QuestionHow to read from Serial (COM) Port? [modified] Pin
Aghosh Babu15-Jan-09 16:36
Aghosh Babu15-Jan-09 16:36 
AnswerRe: How to read from Serial (COM) Port? Pin
lincyang15-Jan-09 19:57
lincyang15-Jan-09 19:57 

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.