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

C#

 
AnswerRe: Image Comparison Algorithm... Pin
Robert Rohde11-Jun-06 8:57
Robert Rohde11-Jun-06 8:57 
GeneralRe: Image Comparison Algorithm... Pin
Shy Agam11-Jun-06 11:37
Shy Agam11-Jun-06 11:37 
QuestionCannot implicitly convert type 'int' to 'bool' Pin
Hengy11-Jun-06 7:01
Hengy11-Jun-06 7:01 
AnswerRe: Cannot implicitly convert type 'int' to 'bool' Pin
teejayem11-Jun-06 7:08
teejayem11-Jun-06 7:08 
Questionwriting to txtfiles Pin
rcwoods11-Jun-06 6:46
rcwoods11-Jun-06 6:46 
AnswerRe: writing to txtfiles Pin
Robert Rohde11-Jun-06 8:58
Robert Rohde11-Jun-06 8:58 
AnswerRe: writing to txtfiles Pin
Guffa11-Jun-06 12:39
Guffa11-Jun-06 12:39 
AnswerRe: writing to txtfiles Pin
ideru11-Jun-06 20:06
ideru11-Jun-06 20:06 
if you are just writing to a normal txt file just use normal File create operations.

string fname = "C:\\test.txt"

using(StreamWriter sw = File.CreateText(fname))
{
sw.WriteLine(data_to_be_written);
}


AnswerRe: writing to txtfiles Pin
SysJey11-Jun-06 22:59
SysJey11-Jun-06 22:59 
QuestionSystem.Windows.Forms.VisualStyles Error Pin
tongueless11-Jun-06 6:37
tongueless11-Jun-06 6:37 
AnswerRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango11-Jun-06 9:51
sponsorJudah Gabriel Himango11-Jun-06 9:51 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless12-Jun-06 4:46
tongueless12-Jun-06 4:46 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango12-Jun-06 5:37
sponsorJudah Gabriel Himango12-Jun-06 5:37 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless13-Jun-06 3:33
tongueless13-Jun-06 3:33 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless13-Jun-06 3:35
tongueless13-Jun-06 3:35 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango13-Jun-06 5:06
sponsorJudah Gabriel Himango13-Jun-06 5:06 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless13-Jun-06 5:31
tongueless13-Jun-06 5:31 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless13-Jun-06 5:34
tongueless13-Jun-06 5:34 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango13-Jun-06 5:45
sponsorJudah Gabriel Himango13-Jun-06 5:45 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless13-Jun-06 18:25
tongueless13-Jun-06 18:25 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango14-Jun-06 5:38
sponsorJudah Gabriel Himango14-Jun-06 5:38 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
tongueless15-Jun-06 12:17
tongueless15-Jun-06 12:17 
GeneralRe: System.Windows.Forms.VisualStyles Error Pin
Judah Gabriel Himango15-Jun-06 13:14
sponsorJudah Gabriel Himango15-Jun-06 13:14 
QuestionC#-Secured XML Pin
yoti1111-Jun-06 6:17
yoti1111-Jun-06 6:17 
AnswerRe: C#-Secured XML Pin
Judah Gabriel Himango11-Jun-06 9:49
sponsorJudah Gabriel Himango11-Jun-06 9:49 

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.