Click here to Skip to main content
15,916,945 members
Home / Discussions / C#
   

C#

 
QuestionSending commands and infotmation to a web page Pin
Sabry190519-Nov-08 7:16
Sabry190519-Nov-08 7:16 
AnswerRe: Sending commands and infotmation to a web page Pin
Ennis Ray Lynch, Jr.19-Nov-08 9:46
Ennis Ray Lynch, Jr.19-Nov-08 9:46 
GeneralRe: Sending commands and infotmation to a web page Pin
Sabry190520-Nov-08 6:30
Sabry190520-Nov-08 6:30 
QuestionRead data from excel file c# Pin
emilio_ts19-Nov-08 6:50
emilio_ts19-Nov-08 6:50 
AnswerRe: Read data from excel file c# Pin
Andrew Rissing19-Nov-08 7:37
Andrew Rissing19-Nov-08 7:37 
GeneralRe: Read data from excel file c# Pin
Paul Conrad19-Nov-08 8:24
professionalPaul Conrad19-Nov-08 8:24 
GeneralRe: Read data from excel file c# Pin
emilio_ts19-Nov-08 8:46
emilio_ts19-Nov-08 8:46 
GeneralRe: Read data from excel file c# Pin
Andrew Rissing19-Nov-08 9:14
Andrew Rissing19-Nov-08 9:14 
1) I believe you have to install MDAC or the driver. You can find more info here: http://support.microsoft.com/default.aspx?scid=kb;en-us;239114[^]

2) You would just take that DataSet and iterate through it as necessary.

Something like...

foreach (DataTable table in dsDataSet.Tables)
  foreach (DataRow row in table.Rows)
    foreach (DataColumn column in table.Columns)
      ... (Your code here) ...


Personally, there's not much reason to transfer it to an array. Because a DataTable/DataSet is already a great form for connecting it to other items.

3) Its a User Interface component. Remove that line.
GeneralRe: Read data from excel file c# Pin
emilio_ts19-Nov-08 9:35
emilio_ts19-Nov-08 9:35 
QuestionThreading question (new form) Pin
EliottA19-Nov-08 6:11
EliottA19-Nov-08 6:11 
AnswerRe: Threading question (new form) Pin
Judah Gabriel Himango19-Nov-08 6:32
sponsorJudah Gabriel Himango19-Nov-08 6:32 
QuestionForm closing Pin
netJP12L19-Nov-08 6:03
netJP12L19-Nov-08 6:03 
AnswerRe: Form closing Pin
Michael Bookatz19-Nov-08 6:23
Michael Bookatz19-Nov-08 6:23 
AnswerRe: Form closing Pin
Pedram Behroozi19-Nov-08 6:53
Pedram Behroozi19-Nov-08 6:53 
Question[Message Deleted] Pin
mobius11100119-Nov-08 5:56
mobius11100119-Nov-08 5:56 
GeneralCross-post Pin
Wendelius19-Nov-08 6:18
mentorWendelius19-Nov-08 6:18 
GeneralRe: Cross-post Pin
mobius11100119-Nov-08 6:51
mobius11100119-Nov-08 6:51 
QuestionTooltip for Menu Item Pin
#realJSOP19-Nov-08 5:48
professional#realJSOP19-Nov-08 5:48 
AnswerRe: Tooltip for Menu Item [modified] Pin
led mike19-Nov-08 6:06
led mike19-Nov-08 6:06 
AnswerRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 6:32
mentorWendelius19-Nov-08 6:32 
GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 6:38
professional#realJSOP19-Nov-08 6:38 
GeneralRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 6:48
mentorWendelius19-Nov-08 6:48 
GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 7:15
professional#realJSOP19-Nov-08 7:15 
GeneralRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 7:40
mentorWendelius19-Nov-08 7:40 
GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 8:10
professional#realJSOP19-Nov-08 8:10 

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.