Click here to Skip to main content
15,896,730 members
Home / Discussions / C#
   

C#

 
AnswerRe: Reading A Specific value From Txt File Pin
Wendelius14-Feb-09 9:11
mentorWendelius14-Feb-09 9:11 
AnswerRe: Reading A Specific value From Txt File Pin
Calin Tatar14-Feb-09 9:14
Calin Tatar14-Feb-09 9:14 
AnswerRe: Reading A Specific value From Txt File Pin
Nuri Ismail14-Feb-09 9:18
Nuri Ismail14-Feb-09 9:18 
GeneralRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 9:28
wwwxyz14-Feb-09 9:28 
GeneralRe: Reading A Specific value From Txt File Pin
Deresen14-Feb-09 11:01
Deresen14-Feb-09 11:01 
AnswerRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 11:18
wwwxyz14-Feb-09 11:18 
GeneralRe: Reading A Specific value From Txt File Pin
Deresen14-Feb-09 11:30
Deresen14-Feb-09 11:30 
GeneralRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 11:53
wwwxyz14-Feb-09 11:53 
Questionimagemap with highlight Pin
Axell14-Feb-09 8:19
Axell14-Feb-09 8:19 
AnswerRe: imagemap with highlight Pin
Nuri Ismail14-Feb-09 8:27
Nuri Ismail14-Feb-09 8:27 
GeneralRe: imagemap with highlight Pin
DaveyM6914-Feb-09 8:29
professionalDaveyM6914-Feb-09 8:29 
GeneralRe: imagemap with highlight Pin
Axell14-Feb-09 8:34
Axell14-Feb-09 8:34 
GeneralRe: imagemap with highlight Pin
DaveyM6914-Feb-09 11:29
professionalDaveyM6914-Feb-09 11:29 
AnswerRe: imagemap with highlight Pin
DaveyM6914-Feb-09 8:28
professionalDaveyM6914-Feb-09 8:28 
Questionarray table or string table Pin
abbd14-Feb-09 7:38
abbd14-Feb-09 7:38 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 8:04
Nuri Ismail14-Feb-09 8:04 
GeneralRe: array table or string table Pin
abbd14-Feb-09 8:39
abbd14-Feb-09 8:39 
GeneralRe: array table or string table Pin
hendrik14-Feb-09 8:53
hendrik14-Feb-09 8:53 
GeneralRe: array table or string table Pin
Nuri Ismail14-Feb-09 8:55
Nuri Ismail14-Feb-09 8:55 
GeneralRe: array table or string table Pin
abbd14-Feb-09 8:59
abbd14-Feb-09 8:59 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 9:02
Nuri Ismail14-Feb-09 9:02 
GeneralRe: array table or string table Pin
abbd14-Feb-09 9:14
abbd14-Feb-09 9:14 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 9:21
Nuri Ismail14-Feb-09 9:21 
GeneralRe: array table or string table Pin
abbd14-Feb-09 9:23
abbd14-Feb-09 9:23 
GeneralRe: array table or string table Pin
Guffa14-Feb-09 9:24
Guffa14-Feb-09 9:24 
abbd wrote:
there are an exception


That's because there is an error.

If you tell which exception, I can tell you which error.

Well, in this case I can actually tell you anyway. You are reading the items as if they were arrays, but they are strings.

foreach (object ee in myList) { MessageBox.Show((string)ee); }

Unless you are stuck with framework 1, you should use a List<string> instead of ArrayList, so that you don't have to cast every item to string when reading from the list.

Despite everything, the person most likely to be fooling you next is yourself.

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.