블로그
- [영진전문대 컴퓨터정보계열 컴퓨터프로그래밍전공] 자바서버프로그래밍 UDP를 사용하여서 데이터 보내고 받기 예제 Sender import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket
- [영진전문대 컴퓨터정보계열 프로그래밍전공] 11월 18일 수업내용 Sender ==> Receiver ( ) 5000 추가실습) sender의 port #를 receiver에서 출력 추가실습) 에코 Receiver 구현 import java.io.IOException
- 메일링서비스 핸들러들 MailHandler { protected String mailServer = null; protected Message message = null; protected String sender receiverAddress = null; public void SendMail() throws UnsupportedEncodingException, MessagingException { if (sender
- Receiving E-mail(2) After reading the final message,... ...he replied to the sender.
- [BNCP]INFOM@iler Biz system Sender 추가구축완료 주식회사 IW네트웍스는 온디스크,파일아이,K디스크를 운영하는 (주)BNCP에 E-mail One to One 서비스 솔루션인 INFOM@iler System 추가구축을 완료하였다. 최강파워풀 컨텐츠를 제공하는 웹하드를 운영하는 (주)BNCP는 증가하는 회원들에게 대량의 메일을 빠르고 안
- [WROX] Working with Buttons class Form1 : Form { public Form1() { InitializeComponent(); } private void buttonKorean_Click(object sender , EventArgs e) { MessageBox.Show("안녕하세요"); } private void buttonEnglish_Click(object sender, EventArgs
- [HOONS] Controls.Find QACSHAP&Mode=2&BoardIdx=26530&Key=&Value= private void buttonAllChecked_Click(object sender
- [WROX] Working With RichTextBox class Form1 : Form { public Form1() { InitializeComponent(); } private void buttonBold_Click(object sender
- [C#학습셀04-21] How to: Determine the Selected Item in a ListBox Control Example :CodeSnippet_CopyCode('CodeSnippetContainerCode0');">Copy private void Form1_Load(object sender Items.Add("Two"); listBox1.Items.Add("Three"); } private void listBox1_SelectedIndexChanged(object sender
- [C#학습셀04-20] How to: Add and Clear Items in a ListBox Control Example Copy private void button1_Click(object sender, System.EventArgs e) { listBox1.Items.Add("Sally "); listBox1.Items.Add("Craig"); } private void button2_Click(object sender, System.EventArgs e) { listBox1