Click here to Skip to main content
15,891,253 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to parse csv file into xml file Pin
DON34526-Apr-07 2:39
DON34526-Apr-07 2:39 
AnswerRe: How to parse csv file into xml file Pin
Vikram A Punathambekar25-Apr-07 21:04
Vikram A Punathambekar25-Apr-07 21:04 
QuestionMouse over a control Pin
Keshav V. Kamat25-Apr-07 18:37
Keshav V. Kamat25-Apr-07 18:37 
AnswerRe: Mouse over a control Pin
Nouman Bhatti25-Apr-07 19:04
Nouman Bhatti25-Apr-07 19:04 
AnswerRe: Mouse over a control Pin
Martin#25-Apr-07 20:16
Martin#25-Apr-07 20:16 
Questionsave file as atext...using v.s 2003 ! Pin
mr jets25-Apr-07 17:53
mr jets25-Apr-07 17:53 
AnswerRe: save file as atext...using v.s 2003 ! Pin
Christian Graus25-Apr-07 19:22
protectorChristian Graus25-Apr-07 19:22 
GeneralRe: save file as atext...using v.s 2003 ! Pin
mr jets26-Apr-07 5:22
mr jets26-Apr-07 5:22 
i reaally appreciat ur time bro..okie ur code creating atext in c drive but it doesnt save the values of (x,y,..) remember bro my program like Paint ..so when i open the text it doesnt display my drawings (line,polygon,..)
thats my open code :
{
OpenFileDialog fileChooser=new OpenFileDialog();
DialogResult result = fileChooser.ShowDialog();
String fileName ; // name of file to containing data
// exit event handler if user clicked "cancel"
if (result == DialogResult.Cancel)
return;
// get specified file name
fileName= fileChooser.FileName;
//show error if user specified invalid file
if (fileName=="" || fileName==null)
MessageBox.Show("Invalid File Name ","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
else
//creat Filestream to obtain read access to file
input = new FileStream(fileName,FileMode.Open,FileAccess.Read);

}

Regards ;Sigh | :sigh:


GeneralRe: save file as atext...using v.s 2003 ! Pin
Christian Graus26-Apr-07 11:16
protectorChristian Graus26-Apr-07 11:16 
GeneralRe: save file as atext...using v.s 2003 ! Pin
mr jets26-Apr-07 13:00
mr jets26-Apr-07 13:00 
GeneralRe: save file as atext...using v.s 2003 ! Pin
Christian Graus26-Apr-07 22:08
protectorChristian Graus26-Apr-07 22:08 
Questionpostback or DoPostback Pin
karl170125-Apr-07 14:46
karl170125-Apr-07 14:46 
AnswerRe: postback or DoPostback Pin
karl170125-Apr-07 16:17
karl170125-Apr-07 16:17 
Questionsave & open file... Pin
mr jets25-Apr-07 14:32
mr jets25-Apr-07 14:32 
AnswerRe: save & open file... Pin
Christian Graus25-Apr-07 14:43
protectorChristian Graus25-Apr-07 14:43 
GeneralRe: save & open file... Pin
mr jets25-Apr-07 15:10
mr jets25-Apr-07 15:10 
GeneralRe: save & open file... Pin
Christian Graus25-Apr-07 15:14
protectorChristian Graus25-Apr-07 15:14 
GeneralRe: save & open file... Pin
mr jets25-Apr-07 15:19
mr jets25-Apr-07 15:19 
GeneralRe: save & open file... Pin
mr jets25-Apr-07 16:21
mr jets25-Apr-07 16:21 
QuestionInteger/Decimal control in Windows Froms Pin
Nooie25-Apr-07 13:59
Nooie25-Apr-07 13:59 
AnswerRe: Integer/Decimal control in Windows Froms Pin
Christian Graus25-Apr-07 14:21
protectorChristian Graus25-Apr-07 14:21 
QuestionCombinations or Permutations or something else?? Pin
allenmpcx25-Apr-07 12:18
allenmpcx25-Apr-07 12:18 
AnswerRe: Combinations or Permutations or something else?? Pin
Arun.Immanuel25-Apr-07 15:08
Arun.Immanuel25-Apr-07 15:08 
AnswerRe: Combinations or Permutations or something else?? [modified] Pin
Luc Pattyn25-Apr-07 15:52
sitebuilderLuc Pattyn25-Apr-07 15:52 
GeneralRe: Combinations or Permutations or something else?? Pin
Arun.Immanuel25-Apr-07 16:09
Arun.Immanuel25-Apr-07 16:09 

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.