Click here to Skip to main content
15,901,284 members
Home / Discussions / C#
   

C#

 
GeneralRe: array of object Pin
Dennis C. Dietrich20-Jan-05 13:33
Dennis C. Dietrich20-Jan-05 13:33 
Generalwindows application vs console application mode Pin
Pilaf20-Jan-05 9:01
Pilaf20-Jan-05 9:01 
GeneralRe: windows application vs console application mode Pin
Dave Kreskowiak20-Jan-05 13:21
mveDave Kreskowiak20-Jan-05 13:21 
GeneralCheck for DVD-ROM Pin
jooky20-Jan-05 8:24
jooky20-Jan-05 8:24 
GeneralThreadPool ThreadSleep issue. Pin
Tristan Rhodes20-Jan-05 8:03
Tristan Rhodes20-Jan-05 8:03 
GeneralC# bittorrents Pin
kshet2620-Jan-05 7:14
kshet2620-Jan-05 7:14 
GeneralRe: C# bittorrents Pin
Heath Stewart20-Jan-05 7:20
protectorHeath Stewart20-Jan-05 7:20 
GeneralArrayList Pin
Newbie_Toy20-Jan-05 6:17
Newbie_Toy20-Jan-05 6:17 
If i use ArrayList to get the data in database
(I copy this code from the internet)
ArrayList array = new ArrayList();
this.command.CommandText = "SELECT * FROM " + table + " ORDER BY " + ordering;
this.reader = this.command.ExecuteReader();
while (this.reader.Read())
{
ArrayList a = new ArrayList();
for (int i = 0; i < this.reader.FieldCount; i++)
a.Add(this.reader[i]);
array.Add(a);
}
this.reader.Close();
return array;

How to show all value in Arraylist. Please show me the code. I use for loop already but it always show System.Collections.ArrayList. Thank you.
GeneralRe: ArrayList Pin
Heath Stewart20-Jan-05 7:29
protectorHeath Stewart20-Jan-05 7:29 
GeneralRe: ArrayList Pin
Newbie_Toy20-Jan-05 19:25
Newbie_Toy20-Jan-05 19:25 
GeneralRe: ArrayList Pin
Heath Stewart21-Jan-05 5:53
protectorHeath Stewart21-Jan-05 5:53 
GeneralArray Parameter to Method In COM ActiveX Control Pin
tdciswalker20-Jan-05 5:55
tdciswalker20-Jan-05 5:55 
GeneralRe: Array Parameter to Method In COM ActiveX Control Pin
Heath Stewart20-Jan-05 7:18
protectorHeath Stewart20-Jan-05 7:18 
GeneralI've Seriose Problem.. Pin
Shady Aly20-Jan-05 5:32
Shady Aly20-Jan-05 5:32 
GeneralRe: I've Seriose Problem.. Pin
Heath Stewart20-Jan-05 7:06
protectorHeath Stewart20-Jan-05 7:06 
GeneralOSSOCK::recv bottleneck Pin
iandmcneill20-Jan-05 4:41
iandmcneill20-Jan-05 4:41 
Questionkeep alive error? Pin
Anonymous20-Jan-05 4:30
Anonymous20-Jan-05 4:30 
GeneralListview Pin
Newbie_Toy20-Jan-05 4:19
Newbie_Toy20-Jan-05 4:19 
GeneralRe: Listview Pin
Heath Stewart20-Jan-05 6:59
protectorHeath Stewart20-Jan-05 6:59 
QuestionHelp!, how does drawing work?? Pin
Serrrix20-Jan-05 2:51
Serrrix20-Jan-05 2:51 
AnswerRe: Help!, how does drawing work?? Pin
Heath Stewart20-Jan-05 6:55
protectorHeath Stewart20-Jan-05 6:55 
GeneralRe: Help!, how does drawing work?? Pin
Serrrix20-Jan-05 8:30
Serrrix20-Jan-05 8:30 
GeneralLoad a form in c# Pin
malliah kevin20-Jan-05 0:53
malliah kevin20-Jan-05 0:53 
GeneralRe: Load a form in c# Pin
itssuk20-Jan-05 1:20
itssuk20-Jan-05 1:20 
GeneralRe: Load a form in c# Pin
realmontanakid20-Jan-05 1:36
realmontanakid20-Jan-05 1:36 

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.