Click here to Skip to main content
15,898,931 members
Home / Discussions / C#
   

C#

 
QuestionC# and XML - Do we need parser for an XML Editor in C# Pin
h@s@n10-Nov-06 3:18
h@s@n10-Nov-06 3:18 
AnswerRe: C# and XML - Do we need parser for an XML Editor in C# Pin
ednrgc10-Nov-06 3:27
ednrgc10-Nov-06 3:27 
AnswerRe: C# and XML - Do we need parser for an XML Editor in C# Pin
Dustin Metzgar10-Nov-06 3:37
Dustin Metzgar10-Nov-06 3:37 
AnswerRe: C# and XML - Do we need parser for an XML Editor in C# Pin
Pete O'Hanlon10-Nov-06 3:46
mvePete O'Hanlon10-Nov-06 3:46 
GeneralRe: C# and XML - Do we need parser for an XML Editor in C# Pin
h@s@n10-Nov-06 9:13
h@s@n10-Nov-06 9:13 
GeneralRe: C# and XML - Do we need parser for an XML Editor in C# Pin
h@s@n10-Nov-06 9:14
h@s@n10-Nov-06 9:14 
Questionloop through excel sheet rows Pin
fmardani10-Nov-06 3:17
fmardani10-Nov-06 3:17 
AnswerRe: loop through excel sheet rows Pin
fmardani10-Nov-06 3:30
fmardani10-Nov-06 3:30 
I think I worked it out.

// loop through 10 rows of the spreadsheet and place each row in the list view
for (int i = 4; i <= 10; i++)
{
Excel.Range range = excelWs.get_Range("A" + i.ToString(), "J" + i.ToString());
range.Cells.Value2 = "value" + i;
}
QuestionDrag & Drop file without opening application Pin
Blubbo10-Nov-06 2:13
Blubbo10-Nov-06 2:13 
AnswerRe: Drag & Drop file without opening application Pin
ednrgc10-Nov-06 3:29
ednrgc10-Nov-06 3:29 
AnswerRe: Drag & Drop file without opening application Pin
Ed.Poore10-Nov-06 5:36
Ed.Poore10-Nov-06 5:36 
GeneralRe: Drag & Drop file without opening application Pin
Blubbo10-Nov-06 6:40
Blubbo10-Nov-06 6:40 
QuestionHow to create drag and drop controls in win app. ? Pin
varisai10-Nov-06 2:05
varisai10-Nov-06 2:05 
AnswerRe: How to create drag and drop controls in win app. ? Pin
Blubbo10-Nov-06 2:14
Blubbo10-Nov-06 2:14 
Questionwindows explorer Pin
mr_pop_198410-Nov-06 1:59
mr_pop_198410-Nov-06 1:59 
AnswerRe: windows explorer Pin
saqib8210-Nov-06 2:11
saqib8210-Nov-06 2:11 
AnswerRe: windows explorer Pin
ednrgc10-Nov-06 3:30
ednrgc10-Nov-06 3:30 
AnswerRe: windows explorer Pin
beatles169210-Nov-06 22:56
beatles169210-Nov-06 22:56 
QuestionThread taking maximum CPU time- Pin
IamHuM10-Nov-06 1:56
IamHuM10-Nov-06 1:56 
AnswerRe: Thread taking maximum CPU time- Pin
ejuanpp10-Nov-06 3:14
ejuanpp10-Nov-06 3:14 
GeneralRe: Thread taking maximum CPU time- Pin
bahman2000b10-Nov-06 4:27
bahman2000b10-Nov-06 4:27 
AnswerRe: Thread taking maximum CPU time- Pin
Ami Bar10-Nov-06 4:35
Ami Bar10-Nov-06 4:35 
AnswerRe: Thread taking maximum CPU time- Pin
S. Senthil Kumar10-Nov-06 5:32
S. Senthil Kumar10-Nov-06 5:32 
AnswerRe: Thread taking maximum CPU time- Pin
Karthik Kalyanasundaram10-Nov-06 7:13
Karthik Kalyanasundaram10-Nov-06 7:13 
GeneralRe: Thread taking maximum CPU time- Pin
IamHuM10-Nov-06 21:14
IamHuM10-Nov-06 21:14 

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.