Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
RedHat/chkconfig-compliant start script: #!/bin/sh httpd This shell script takes care of starting and stopping httpd. chkconfig: 2345 65 35 description: httpd provides support for updating dynamic DNS services. PATH=/usr/sbin:/root/bin:${PATH}export PATH HTTPD=’/usr/local/apache2/bin/httpd’ case “$1” instart)echo -n “Starting httpd: “$HTTPD -k $1echo;;stop)echo…
DateTime 변수는 null로 설정될 수 없고 무조건 값을 가져야 한다. 대부분의 사람들은 null을 DateTime 변수에 설정하기 위해 DateTime.MinValue 를 이용한다. DateTime dt = DateTime.MinValue;
Event Dialog Box를 만들어 보자 종종 Application을 보다보면 1~2초 동안 잠깐 나와서 메시지를 보여주고 스스로 사라지는 윈도우를 볼 수 있을 것이다. AfxMessageBox 처럼 쉽게 만들고, 사용자가 delete 시키는 아무런 작업을 하지 않아도 스스로 사라지는 그런 편리한 이벤트 대화 상자를 만들어…
This is a Free Icon Editor that you will find very useful. This is a great free tool. The editor supports multiple resolutions, importing, exporting, various effects and much more. Download :
안드로이드 프로그래밍 공부중에 나중에 참고 할 만한 내용을 정리하는 중이다. 이번에는 Handler 클래스를 사용하여 무한 루프를 만드는 방법이다. Handler 클래스의 sendEmptyMessage() , sendEmptyMessageDelayed() 메서드를 이용해서 만들수 있다. [code lang=”java”] public class HandlerTest extends Activity { public void onCreate(Bundle savedInstanceState) {…
1. Access your WSL Access your Linux system. 2. Remove config.json file located in users home directory rm ~
When you link a Visual C++ project by using the /INCREMENTAL build option in Microsoft Visual Studio 2008, you may receive the following error message: LNK1000: Internal error during IncrBuildImage Solution :
MP3 파일의 음질을 손쉽게 변환할 수 있는 프로그램이다. 게다가 프리웨어… [notice]다운로드 링크 : [/notice]
Yesterday, I attended a local MSDN event in the Birmingham area. It covered the .NET 2.0 System.Net namespace, an introduction to WCF, and a look at Atlas. During the course of the WCF overview, someone asked the presenter whether it…
WPF does not provide any function to remove the icon of a window. But we can use Win32 API to remove the icon. WPF Tutorial site provide IconHelper class to remove icon of a window. You can find the source…