특정 폼에다가 파일스트림에 있는 값들을 읽어들여서 텍스트로 쓸수있는지 궁금합니다.

fkqpfwl121의 이미지

예를들어 지금 현재 form2에서 회원가입을 하고나면 파일스트림에 쓰기로 한줄한줄 정보들이 입력이 되는데

form7에서 form2에 입력된 정보들을 파일스트림에서 읽어들여와서 form7의 label1.text에 한줄한줄 불러 읽어들여서

form7에 이런식으로 쓸수 있는지 궁금합니다.

마지막에 회원정보들을 맨 끝인 폼7에다 다 뿌려주고싶은데 그게 가능할런지 ..

그리고 checkbox같은 종류의 것도 파일스트림에 쓸수 있는지 궁금합니다.

그리고 만약 쓴다면 checkbox 인근에다가 파일스트림을 열어주고 파일을 다시 써야 하고 닫아주어야 하는지 궁금합니다

shint의 이미지

엉터리 코드라서 ㅡ_ㅡ;;

//-------------------------------------------------------------
//특정 폼에다가 파일스트림에 있는 값들을 읽어들여서 텍스트로 쓸수있는지 궁금합니다.
//http://kldp.org/node/153883
//-------------------------------------------------------------

//-------------------------------------------------------------
//FormSend
//http://www.dotnetperls.com/streamwriter
//-------------------------------------------------------------

using (StreamWriter writer = new StreamWriter("important.txt"))
{
	textbox.text = "회원가입";
	writer.Write(textbox.text);
}

//-------------------------------------------------------------
//C# 폼간 메시지전송
//http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=18&MAEULNO=8&no=1784&page=1
//http://www.hoons.net/Board/QACSHAP/Content/28895
//-------------------------------------------------------------

public interface IFormMessage
{
	void Receive(string str);
}

//보내는 쪽
public partial class FormSend : Form, IFormMessage
{
	public FormSend()
	{
		InitializeComponent();
	}
 
	#region IFormMessage 멤버
	public void Receive(string str)
	{
	}
	#endregion
 
	private void button5_Click(object sender, EventArgs e)
	{
		foreach (Form frm in Application.OpenForms)
		{
			if(frm is IFormMessage)
			{
				(frm as IFormMessage).Receive("test");
			}
		}
	}
}
 
 
//받는 쪽
public partial class FormRecv : Form, IFormMessage
{
	public FormRecv()
	{
		InitializeComponent();
	}
 
	virtual void Receive(string str)
	{
		label1.text = str;
		회원정보.text = str;
		using (StreamWriter writer = new StreamWriter("important.txt"))
		{
			Message.Text = CalculateTotal(checkbox1.Checked).ToString("c");
			writer.Write(Message.Text);
		}
	}
}

//CheckBox
//https://msdn.microsoft.com/ko-kr/library/system.web.ui.webcontrols.checkbox.text(v=vs.110).aspx

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

익명 사용자의 이미지

어렵네요 ㄷㄷㄷㄷ..

조그맣게 올려주신 예제 소스 분석하는데도 ㄷㄷㄷ..

감사합니다

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.