일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- C#
- Web Service
- 웹 서비스
- Apache Lucene
- Eclipse
- decompiler
- SpringSource Tool Suite
- Android
- STS
- 웹뷰
- Maven
- MSsql
- MS-SQL
- 자바
- scrollView
- 이클립스
- 컬럼명
- varags
- Bootstrap
- 안드로이드
- jsp
- javascript
- TextBox
- html
- asp.net
- MANTIS
- WebView
- Redirect
- 자바스크립트
- Java
- Today
- Total
목록C# | ASP.NET (43)
bboks.net™
1. 빈 폼을 만든다. 2. 폼에 NotifyIcon 컨트롤을 추가한다. 3. 폼에 Resize 이벤트 추가 4. Resize 이벤트에 아래 코드 입력 private void Form1_Resize(object sender, EventArgs e) { //notifyIcon1.BalloonTipTitle = "Monimize to Tray App"; //notifyIcon1.BalloonTipText = "You have successfully minimized you form"; if (FormWindowState.Minimized == this.WindowState) { notifyIcon1.Visible = true; this.Hide(); } else if (FormWindowState.Norma..
Socket의 SetSocketOption 메소드를 사용하고 다시 바인드를 시키면 됨 socket.SetSocketOption(SocketOptionLevel.Socket,SocketOptionName.ReuseAddress, true); [출처] Can't Re-bind a socket to an existing IP/Port Combination
웹서비스 참조 생성에 필요한 클래스 using System; using System.Collections.Generic; using System.Text; using System.Reflection; using System.CodeDom; using System.CodeDom.Compiler; using System.Security.Permissions; using System.Web.Services.Description; namespace WebServiceCall { internal class WsProxy { [SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)] internal static object CallWebSer..