자료출처: http://www.iloveflash.co.kr

XP2인지 체크하여 XP2일때는 팝업허용하라는 메시지 뛰워주기




XP2체크하여 원하는 작업실행하거나 안될때 안내하기







팝업체크


크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/04/15 10:33 2005/04/15 10:33
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/321

Dual select box

하나의 항목을 선택하면 그 항목과 관련된 또다른 항목이 나타나면서 선택할 수 있는 콤보박스입니다













Select SubList:





크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/04/01 18:55 2005/04/01 18:55
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/320




Jasko Sample Script
















금액:

성명:







크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/03/31 18:03 2005/03/31 18:03
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/319

에디트 플러스

A. \'기본설정\' -> \'사용자 도구\' 에서 다음과 같은 항목을 추가해 보십시오.

예제 1. 자바 컴파일러

메뉴제목: Java Compiler
명령: c:\\java\\bin\\javac.exe
인수: $(FilePath)
디렉토리: $(FileDir)
출력내용 캡처: ON

예제 2. Turbo C 2.01

메뉴제목: Turbo C
명령: c:\\tc\\tcc.exe
인수: -Ic:\\tc\\include -Lc:\\tc\\lib -n$(FileDir) $(FilePath)
디렉토리: c:\\tc
출력내용 캡처: ON

예제 3. Borland C++ 5.5

메뉴제목: Borland C
명령: c:\\bc\\bin\\bcc32.exe
인수: -Ic:\\bc\\include -Lc:\\bc\\lib -n$(FileDir) $(FilePath)
디렉토리: c:\\bc\\bin
출력내용 캡처: ON

예제 4. Visual C++

메뉴제목: Visual C++
명령: c:\\msdev\\vc98\\bin\\cl.exe
인수: \"$(FilePath)\"
디렉토리: $(FileDir)
출력내용 캡처: ON

위에서 \'명령\' 란에는 실제 자바 컴파일러의 경로를 입력해야 합니다.

이렇게 설정하면 \'도구\' 메뉴에서 \'Java Compiler\' 항목을 선택하거나 \'사용자 도구모음\'에 있는 아이콘을 눌러서 자바 컴파일러를 실행시킬 수 있습니다.

컴파일된 *.class 파일을 실행하려면 다음과 같이 설정해 보십시오.

메뉴제목: Java
명령: c:\\java\\bin\\java.exe
인수: $(FileNameNoExt)
디렉토리: $(FileDir)

역시 \'명령\' 항목에는 실제 자바 인터프리터의 경로를 입력해야 합니다.

컴파일된 *.exe 파일을 실행하려면 다음과 같이 설정해 보십시오.

메뉴제목: Run
명령: $(FileNameNoExt)
인수:
디렉토리: $(FileDir)

-----------------------------------------------------
참조 : http://www.editplus.com/kr/faq.html
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/03/25 11:33 2005/03/25 11:33
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/294

회원 가입폼의 아이디등의 입력 양식에서 한글을 입력하지 않게 해 주는 간단한 폼체크 스크립트 입니다.




Jasko Sample Script












User_id




크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/02/19 10:34 2005/02/19 10:34
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/65

php에서 이미지 타입 확인

사용서버에서 사용할수 잇는 이미지 확인.


var_dump(gd_info());
?>

gd_info


구조 : array gd_info ( void )


기능 : Retrieve information about the currently installed GD library


Returns an associative array describing the version and capabilities of the installed GD library. 표 1. Elements of array returned by gd_info()AttributeMeaningGD Versionstring value describing the installed libgd version.Freetype Supportboolean value. TRUE if Freetype Support is installed.Freetype Linkagestring value describing the way in which Freetype was linked. Expected values are: \'with freetype\', \'with TTF library\', and \'with unknown library\'. This element will only be defined if Freetype Support evaluated to TRUE.T1Lib Supportboolean value. TRUE if T1Lib support is included.GIF Read Supportboolean value. TRUE if support for reading GIF images is included.GIF Create Supportboolean value. TRUE if support for creating GIF images is included.JPG Supportboolean value. TRUE if JPG support is included.PNG Supportboolean value. TRUE if PNG support is included.WBMP Supportboolean value. TRUE if WBMP support is included.XBM Supportboolean value. TRUE if XBM support is included.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/02/04 17:03 2005/02/04 17:03
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/64

이미지 퍼가기 금지.

그림에 마우스를 내면 인쇄/복사/편지/내그림
도구 안보이게~

< META HTTP-EQUIV=\"imagetoolbar\" CONTENT=\"no\">


마우스 오른쪽버튼,드래그금지

< body oncontextmenu=\"return false\" onselectstart=\"return false\" ondragstart=\"return false\">
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/02/04 16:25 2005/02/04 16:25
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/63




크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/27 18:01 2005/01/27 18:01
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/62

윈도우에서 창을 닫을 때
보통 window.close();를 사용해서 닫는데
이럴 경우에는 \"창을 닫으시겠습니까? 예 아니오\"라는 확인창이 나오게 됩니다.

이런 확인창 없이 윈도우를 닫고자 할때는
self.opener = self;
window.close();
이런 식으로 해주면 됩니다.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/10 15:47 2005/01/10 15:47
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/318

일정 시간 경과후 창 닫기




.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/10 15:46 2005/01/10 15:46
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/317

« Previous : 1 : ... 20 : 21 : 22 : 23 : 24 : 25 : 26 : 27 : 28 : ... 33 : Next »

블로그 이미지

- 홍반장

Archives

Recent Trackbacks

Calendar

«   2024/11   »
          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
Statistics Graph

Site Stats

Total hits:
239657
Today:
309
Yesterday:
712