티스토리 2차 도메인 설정 완료~

http://tran.kr

'자유' 카테고리의 다른 글

CMA 가입  (0) 2007.10.22
한메일도 pop3/smtp 지원하다~  (0) 2007.10.18
한메일 용량 무제한 업그레이드  (3) 2007.06.08
새해 복 많이 받으세요~  (0) 2007.02.20
대체 맑은 글꼴이 왜 좋다는거지  (0) 2007.01.12
이벤트를 시작한지 오늘로 딱 30일째

하루도 빠짐없이 성공.


사용자 삽입 이미지

새해 복 많이 받으세요~

내눈이 이상한가
맑은 글꼴 도저히 물감이 번지는것처럼 되서 눈이 무지 아프던데

ClearType으로 설정하면 그마나 괜찮아 지지만 그래도 눈은 아프던데
왜이러지. 나만 이상한가..--'

WaitforSingleObject(Mutex, INFINITE);

이함수를 정확히 하는 역할이 무엇인지.

동기화를 위해서 사용은 한것 같지만.. 음.

둘다 팬은 아니지만 공짜표라 .ㅎㅎ

(2006년 06월 03일 토요일 오후 경기)
두산이 LG를 상대로 2:1로 승리 했습니다.

시작전에 찍은 사진



경기중 구장 #1


경기중 구장 #2

출처는 http://cafe.daum.net/avzone

해결 :

시작버튼 -> 제어판 -> 인터넷옵션을 클릭 하신뒤 고급탭의 내용중 탐색이란 부분에서 타사 브라우져 확장명 사용(다시 시작해야함 ) 이란 부분을 체크 해제 후 다시 사용하시기 바랍니다.   재부팅 꼭 해주세요!!

'자유' 카테고리의 다른 글

대체 맑은 글꼴이 왜 좋다는거지  (0) 2007.01.12
친구 공짜표로 두산과 LG 경기를 관람하고 오다  (1) 2006.06.04
php에서 특정 페이지로 보내기  (2) 2006.05.29
낼 어린이날  (0) 2006.05.04
스탠드 장만  (0) 2006.04.27
이 내용은 TCP/IP 소켓 프로그래밍 C#을 참고 하였습니다.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Net.Sockets;

namespace FormsSocket
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}

private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length < 1)
{
MessageBox.Show("전송할 메시지가 없습니다.");
return;
}
MsgSend(textBox1.Text);
}


public void MsgSend(string Msg)
{
String server = "192.168.0.60";

byte[] byteBuffer = Encoding.Unicode.GetBytes(Msg);

int servPort = 7;

TcpClient client = null;
NetworkStream netStream = null;

try
{
client = new TcpClient(server, servPort);

IngMsg.Text = "Connected to server ... Sending echo string";

netStream = client.GetStream();
netStream.Write(byteBuffer, 0, byteBuffer.Length);

IngMsg.Text = "Send " + byteBuffer.Length + " bytes to server...";

int totalBytesRcvd = 0;
int bytesRcvd = 0;


while (totalBytesRcvd < byteBuffer.Length)
{
if ((bytesRcvd = netStream.Read(byteBuffer, totalBytesRcvd,
byteBuffer.Length - totalBytesRcvd)) == 0)
{
IngMsg.Text = "Connection closed prematurely.";
break;
}
totalBytesRcvd += bytesRcvd;
}

// textBox2.Text = "Received " + totalBytesRcvd + " bytes from server: " +
textBox2.Text = Encoding.Unicode.GetString(byteBuffer, 0, totalBytesRcvd);
} catch (Exception e) {
IngMsg.Text = e.Message;
} finally {
netStream.Close();
client.Close();
}
}

private void Form1_Load(object sender, EventArgs e)
{
IngMsg.Text = "";

if (textBox1.CanFocus)
{
textBox1.Focus();
}
}
}

}

화면 구성











'C#' 카테고리의 다른 글

C#에서의 상속관련  (0) 2008.11.20
C#에 대한 문서  (0) 2008.06.05
간단한 Class 테스트  (0) 2006.05.29
.NET 기반의 Socket클래스를 이용한 Echo Client 프로그램  (0) 2006.05.29
TcpEchoServer 프로그램  (0) 2006.05.28

+ Recent posts