Click here to Skip to main content
15,893,594 members
Home / Discussions / C#
   

C#

 
GeneralRe: data grid view Vs databinding Pin
Waleed Eissa11-Sep-07 23:58
Waleed Eissa11-Sep-07 23:58 
AnswerRe: data grid view Vs databinding Pin
Nouman Bhatti12-Sep-07 0:06
Nouman Bhatti12-Sep-07 0:06 
Questionnew namespaces?? Pin
Tarun.Suneja11-Sep-07 22:21
Tarun.Suneja11-Sep-07 22:21 
AnswerRe: new namespaces?? Pin
Waleed Eissa11-Sep-07 23:13
Waleed Eissa11-Sep-07 23:13 
AnswerRe: new namespaces?? Pin
blackjack215012-Sep-07 0:29
blackjack215012-Sep-07 0:29 
AnswerRe: new namespaces?? Pin
Malcolm Smart12-Sep-07 0:29
Malcolm Smart12-Sep-07 0:29 
QuestionRe: new namespaces?? Pin
User 665812-Sep-07 0:33
User 665812-Sep-07 0:33 
GeneralRe: storing data from textbox into different files Pin
Ermak8611-Sep-07 22:12
Ermak8611-Sep-07 22:12 
but where are this messages stored? in one textbox? so how will user decide what is the name of file and which part of textbox text is to save?

or you simply want to save all the text from textbox but choose the file?

if so, make second textbox in which user will write the filename and save file like this:

StreamWriter msgStreamWriter = new StreamWriter(textBoxFileName.Text+".txt"); //with some validation if user written ".txt" or not
msgStreamWriter.WriteLine(textBox1.Text);
msgStreamWriter.Close();

if it is not a solution answer firts question
Questionno overrideable in c# Pin
Adnan Siddiqi11-Sep-07 22:00
Adnan Siddiqi11-Sep-07 22:00 
AnswerRe: no overrideable in c# Pin
Pete O'Hanlon11-Sep-07 22:14
mvePete O'Hanlon11-Sep-07 22:14 
GeneralRe: no overrideable in c# Pin
Adnan Siddiqi11-Sep-07 22:50
Adnan Siddiqi11-Sep-07 22:50 
GeneralRe: no overrideable in c# Pin
Pete O'Hanlon12-Sep-07 1:32
mvePete O'Hanlon12-Sep-07 1:32 
AnswerRe: no overrideable in c# Pin
Vikram A Punathambekar11-Sep-07 23:59
Vikram A Punathambekar11-Sep-07 23:59 
QuestionZip files Pin
minniemooo11-Sep-07 21:45
minniemooo11-Sep-07 21:45 
AnswerRe: Zip files Pin
Pete O'Hanlon11-Sep-07 22:35
mvePete O'Hanlon11-Sep-07 22:35 
QuestionResizing charts in crystal reports Pin
Muammar©11-Sep-07 21:15
Muammar©11-Sep-07 21:15 
QuestionHow can I cange Printer prop??? Pin
galigal1511-Sep-07 21:07
galigal1511-Sep-07 21:07 
QuestionContinous events from a button click Pin
Hampus@foi11-Sep-07 21:00
Hampus@foi11-Sep-07 21:00 
AnswerRe: Continous events from a button click Pin
Malcolm Smart11-Sep-07 21:02
Malcolm Smart11-Sep-07 21:02 
GeneralRe: Continous events from a button click Pin
DavidNohejl11-Sep-07 21:56
DavidNohejl11-Sep-07 21:56 
GeneralRe: Continous events from a button click Pin
Ermak8611-Sep-07 22:25
Ermak8611-Sep-07 22:25 
GeneralRe: Continous events from a button click Pin
DavidNohejl12-Sep-07 0:52
DavidNohejl12-Sep-07 0:52 
GeneralRe: Continous events from a button click Pin
Brady Kelly11-Sep-07 21:56
Brady Kelly11-Sep-07 21:56 
AnswerRe: System.Xml.XmlException Pin
Sandeep Akhare11-Sep-07 20:28
Sandeep Akhare11-Sep-07 20:28 
GeneralRe: System.Xml.XmlException Pin
Malcolm Smart11-Sep-07 21:04
Malcolm Smart11-Sep-07 21:04 

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.