Click here to Skip to main content
15,888,803 members
Home / Discussions / C#
   

C#

 
AnswerRe: Regarding telnet Pin
Ermak8611-Sep-07 0:08
Ermak8611-Sep-07 0:08 
QuestionRe: Regarding telnet Pin
praveenkumar palla23-Sep-07 18:46
praveenkumar palla23-Sep-07 18:46 
QuestionInserting a row into excel spreadsheet Pin
lourensG10-Sep-07 23:25
lourensG10-Sep-07 23:25 
AnswerRe: Inserting a row into excel spreadsheet Pin
pmarfleet10-Sep-07 23:27
pmarfleet10-Sep-07 23:27 
GeneralRe: Inserting a row into excel spreadsheet Pin
lourensG10-Sep-07 23:43
lourensG10-Sep-07 23:43 
GeneralRe: Inserting a row into excel spreadsheet Pin
pmarfleet11-Sep-07 0:50
pmarfleet11-Sep-07 0:50 
GeneralRe: Inserting a row into excel spreadsheet Pin
Jimmanuel11-Sep-07 4:59
Jimmanuel11-Sep-07 4:59 
QuestionHow to cancel selection char in RichText control ? Pin
Yanshof10-Sep-07 23:17
Yanshof10-Sep-07 23:17 
AnswerRe: How to cancel selection char in RichText control ? Pin
Giorgi Dalakishvili10-Sep-07 23:33
mentorGiorgi Dalakishvili10-Sep-07 23:33 
AnswerRe: How to cancel selection char in RichText control ? Pin
Ermak8610-Sep-07 23:38
Ermak8610-Sep-07 23:38 
GeneralRe: How to cancel selection char in RichText control ? Pin
Yanshof11-Sep-07 18:08
Yanshof11-Sep-07 18:08 
GeneralRe: How to cancel selection char in RichText control ? Pin
Ermak8611-Sep-07 22:22
Ermak8611-Sep-07 22:22 
QuestionFreeze user access Pin
Glen Harvy10-Sep-07 22:52
Glen Harvy10-Sep-07 22:52 
AnswerRe: Freeze user access Pin
Giorgi Dalakishvili10-Sep-07 23:03
mentorGiorgi Dalakishvili10-Sep-07 23:03 
GeneralRe: Freeze user access Pin
Glen Harvy11-Sep-07 0:07
Glen Harvy11-Sep-07 0:07 
GeneralRe: Freeze user access Pin
Luc Pattyn11-Sep-07 0:44
sitebuilderLuc Pattyn11-Sep-07 0:44 
GeneralRe: Freeze user access Pin
Glen Harvy11-Sep-07 1:52
Glen Harvy11-Sep-07 1:52 
GeneralRe: Freeze user access Pin
Luc Pattyn11-Sep-07 2:15
sitebuilderLuc Pattyn11-Sep-07 2:15 
QuestionProblems with treeview in WPF Pin
sinosoidal10-Sep-07 22:29
sinosoidal10-Sep-07 22:29 
GeneralRe: Problems with treeview in WPF Pin
asit4u114-Dec-09 3:54
asit4u114-Dec-09 3:54 
QuestionHow to serialize a class that has both of two worlds Pin
sinosoidal10-Sep-07 22:27
sinosoidal10-Sep-07 22:27 
QuestionDifficult question Pin
andredani10-Sep-07 22:06
andredani10-Sep-07 22:06 
Dictionary<string, listviewitem=""> list = new Dictionary<string, listviewitem="">();
String nameAndJob, Job, line, name;
Int32 pages;
ListViewItem item1;
foreach (ListViewItem lvi in listView2.Items)
{
nameAndJob = string.Concat(lvi.SubItems[0].Text);
if (!list.ContainsKey(nameAndJob)) list.Add(nameAndJob, lvi);
Job = string.Concat(lvi.SubItems[1].Text);
if (!list.ContainsKey(Job)) list.Add(Job, lvi);
}
using (StreamReader sr = new StreamReader(path1 + "/personalpr.txt"))
{
while (sr.Peek() > 0)
{
line = sr.ReadLine();
if (line == "#")
{
name = sr.ReadLine();
nameAndJob = string.Concat(name);
Job = string.Concat(name);
if (list.ContainsKey(nameAndJob))
{
item1 = list[nameAndJob];
item1 = list[Job];
item1.SubItems[1].Text = sr.ReadLine();
item1.SubItems[3].Text = sr.ReadLine();
item1.SubItems[5].Text = sr.ReadLine();
}
int result = 0;
foreach (ListViewItem lvi in listView2.Items)
{
result += int.Parse(lvi.SubItems[2].ToString()) - int.Parse(lvi.SubItems[3].ToString()); ????????????????????Mad | :mad:

////I want to calculate lvi.subitems[2] - lvi.subitems[3] and pass the result to subitems[3].Mad | :mad:


}
item1.SubItems[3] = result.ToString();???????Mad | :mad:
}
}
}
}

Can i delete this readline from .txt file after this use??? and how??

Thanks all!! Smile | :) Big Grin | :-D ;)Laugh | :laugh:
AnswerRe: Difficult question Pin
pmarfleet10-Sep-07 23:25
pmarfleet10-Sep-07 23:25 
QuestionUnicode problem Pin
Muammar©10-Sep-07 22:00
Muammar©10-Sep-07 22:00 
AnswerRe: Unicode problem Pin
Martin#10-Sep-07 22:19
Martin#10-Sep-07 22:19 

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.