본문 바로가기

VB.NET16

단순한 컨트롤이 지겨우신 분들만 보세요. 디폴로 조작이 되는 컨트롤들을 보면서 식상한 분들이 있을 것 같아 간단한 컨트롤 다루기를 하나 만들어 보았습니다. Drawing 객체를 이용하기 위해서는 가장 상위에 아래와 같이 Drawing을 Imports해주면 물론 이 예제의 경우는 이것을 해주지 않아도 잘 작동이 되었으나 Drawing을 참조하는 객체들 메서드들, 속성을 사용할 때는 선언을 해주는 것을 좋을 것이라고 생각한다. Imports System.Drawing Private Sub Form1_Load(~) PictureBox1.Dock = DockStyle.Fill PictureBox1.BackColor = Color.White Button1.Dock = DockStyle.Right Button1.BackColor = Color.Ivory .. 2008. 7. 9.
VB.NET으로 socket을 이용한 멀티채팅 프로그램을 만들어보다. 프로그래밍을 작성하다보면 궁극적으로 짜보고 싶은 것은 네트워킹 프로그램일 것이다. 왜냐하면 하나의 네트워킹 프로그램을 짠다는 것은 그 속에 여러가지를 포함하고 있기 때문인 것 같다. 예전에 C 언어를 이용해서 Linux 기반 ICMP 프로그램(일명 ping 테스터기)를 짜거나 오늘 올리는 내용인 멀티채팅 프로그램을 짜보고 VB 6.0으로 socket 프로그램을 작성해 본후 그동안 손을 놓았었는데 지금 VB.NET수업 한 학원에 받는데 1개월 수업과정중 3주째인데 아직도 컨트롤 사용법을 설명하고 있어 심심해서 멀티채팅 프로그램을 만들어 보았다. 웹을 검색해보면 멀티채팅 프로그램 소스들은 참 많이 돌아다니지만 제대로 동작되지 않는 소스들도 많고 물론 .NET 버전이 달라서 안될 수도 있겠지만 그런 소스로 책.. 2008. 7. 2.
What is the delegate in VB.NET I'm learning VB.NET at KH Education Institute at Seoul, Korea. Now, our teacher is teaching Form Controls but I already knew how to use those. So I made a program like TCP/IP networking, Windows Services in our class. I hope I'd like to teach student, and they will be a good programmer individually, if they want to be. Well, I remember when I learned how to use pointer In C, C++. Definition of p.. 2008. 7. 2.
how to delete, move directory Today, we learn how to delete a directory and move. when your program must delete a directory and the files the directory contains. In such cases, you just use the Directory class Delete method. To delete a directory and, optionally, the files and subdirectories the directory contains, invoke the Delete method with the directory name and the value True like Directory.Delete("DirectoryName", True.. 2008. 6. 30.