Click here to Skip to main content
16,007,885 members
Home / Discussions / C#
   

C#

 
AnswerRe: Update the UI? Pin
Nick Parker19-Jul-05 15:29
protectorNick Parker19-Jul-05 15:29 
GeneralRe: Update the UI? Pin
Luis Alonso Ramos19-Jul-05 17:31
Luis Alonso Ramos19-Jul-05 17:31 
GeneralRe: Update the UI? Pin
Nick Parker19-Jul-05 18:13
protectorNick Parker19-Jul-05 18:13 
AnswerRe: Update the UI? Pin
S. Senthil Kumar19-Jul-05 19:21
S. Senthil Kumar19-Jul-05 19:21 
GeneralAJAX and Dropdownlists Pin
Wainwrightwt19-Jul-05 10:21
Wainwrightwt19-Jul-05 10:21 
GeneralRe: AJAX and Dropdownlists Pin
Nick Parker19-Jul-05 15:30
protectorNick Parker19-Jul-05 15:30 
GeneralDisplay Full Row from Dataset Pin
zaboboa19-Jul-05 10:03
zaboboa19-Jul-05 10:03 
GeneralRe: Display Full Row from Dataset Pin
Luis Alonso Ramos19-Jul-05 10:38
Luis Alonso Ramos19-Jul-05 10:38 
You could use WriteRow Smile | :)
<code>void WriteRow(DataRow row)
{
    string str = "Row: ";
 
    for(int i = 0; i < row.Table.Columns.Count; i++)
        str += row[i].ToString();
 
    Debug.WriteLine(str);
}
I haven't tested this code, but it should work OK. I know a StringBuilder would be more efficent, but that's left as an excerise for the reader. (You could also output column names this way.)

Good luck!

-- LuisR



Luis Alonso Ramos
Intelectix - Chihuahua, Mexico

Not much here: My CP Blog!

GeneralPlease Help urgently.. Pin
Tapan Pathak19-Jul-05 9:46
Tapan Pathak19-Jul-05 9:46 
General.NET Patching Pin
ipmcc12319-Jul-05 9:13
ipmcc12319-Jul-05 9:13 
GeneralRe: .NET Patching Pin
Christian Graus19-Jul-05 10:52
protectorChristian Graus19-Jul-05 10:52 
GeneralDuplicating rows in dataset Pin
zaboboa19-Jul-05 8:14
zaboboa19-Jul-05 8:14 
GeneralRe: Duplicating rows in dataset Pin
Not Active19-Jul-05 8:53
mentorNot Active19-Jul-05 8:53 
GeneralPlease Help Me- Singleton problem Pin
Kraazykoder19-Jul-05 7:25
Kraazykoder19-Jul-05 7:25 
GeneralRe: Please Help Me- Singleton problem Pin
Mark Greenwood19-Jul-05 18:57
Mark Greenwood19-Jul-05 18:57 
GeneralRe: Please Help Me- Singleton problem Pin
S. Senthil Kumar19-Jul-05 19:27
S. Senthil Kumar19-Jul-05 19:27 
GeneralMicrosoft's Timezone Control Pin
korondy19-Jul-05 6:17
korondy19-Jul-05 6:17 
GeneralRe: Microsoft's Timezone Control Pin
Sean Michael Murphy19-Jul-05 11:01
Sean Michael Murphy19-Jul-05 11:01 
GeneralRe: Microsoft's Timezone Control Pin
korondy19-Jul-05 11:21
korondy19-Jul-05 11:21 
GeneralRe: Microsoft's Timezone Control Pin
Sean Michael Murphy19-Jul-05 11:39
Sean Michael Murphy19-Jul-05 11:39 
GeneralDynamically create COM objects in C# Pin
raymondlee19-Jul-05 6:12
raymondlee19-Jul-05 6:12 
GeneralVisual inheritance problem Pin
Member 164882919-Jul-05 5:35
Member 164882919-Jul-05 5:35 
GeneralRe: Visual inheritance problem Pin
Christian Graus19-Jul-05 10:56
protectorChristian Graus19-Jul-05 10:56 
GeneralRe: Visual inheritance problem Pin
Dan Neely19-Jul-05 11:06
Dan Neely19-Jul-05 11:06 
GeneralRe: Visual inheritance problem Pin
Christian Graus19-Jul-05 11:10
protectorChristian Graus19-Jul-05 11: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.