본문 바로가기
반응형

ETC...37

[참고자료] A 2D Lite Graph Control with Multiple Plot Support A 2D Lite Graph Control with Multiple Plot Support [출처] http://abipictures.tistory.com/315 Environment: MS VC++ 6.0, Windows 2000 This is a simple, lightweight 2D graph control that supports multiple plots as well as printing. Why make another graph control? This one gives the user basic functionality which would make a great oscilloscope without a lot of extra features getting in the way. Becau.. 2011. 3. 27.
[참고자료] Bar graph control [출처] http://www.ucancode.net/Visual_C_Control/Draw-Real-time-data-bar-chart-control-MFC-Source-Codes.htm Introduction Here is a simple bar graph control class derived from CStatic. It supports displaying real-time data, using any number of bars with different colors, using a scale, both in centimeter and inch, etc. The code uses optimized plotting without flickering. We can change the background.. 2011. 3. 27.
Javascript KeyCode Reference table for Event Handling (keycode, event.KeyCode) Key Pressed Javascript Key Code backspace 8 tab 9 enter 13 shift 16 ctrl 17 alt 18 pause/break 19 caps lock 20 escape 27 page up 33 page down 34 end 35 home 36 left arrow 37 up arrow 38 right arrow 39 down arrow 40 insert 45 delete 46 0 48 1 49 2 50 3 51 4 52 5 53 6 54 7 55 8 56 9 57 a 65 b 66 c 67 d 68 e 69 f 70 g 71 h 72 i 73 j 74 k 75 l 76 m 77 n 78 o 79 p 80 q 81 r 82 s 83 t 84 u 85 v 86 w 8.. 2011. 1. 23.
(JSP & ASP) 세션 유지 ASP(IIS)나 JSP(Tomcat)에서 제공하는 세션은 기본적으로 정해진 시간이 있습니다. Default로 사용하실 경우 아마도 ASP의 경우 20분 / JSP의 경우 30분 동안 아무런 페이지 이동이 없을 경우 세션이 끊어지게 됩니다. 주로 로그인을 할때 세션을 많이 사용하는데.. 이렇게 되면 자동으로 로그아웃이 되어 버립니다. 혹자는 이렇게 로그아웃 되는 것을 원치 않을 것이며, 이 문제의 처리 방법은.. ASP의 경우, Session.Timeout = 60 (60분동안 세션 유지..) 로그인 체크하는 페이지 등 세션 변수를 생성하는 곳에 넣어주시면 됩니다. 혹은 global.asa 에 넣어주시면 됩니다. JSP의 경우.. Program Files의 Tomcat 폴더에 conf라는 폴더를 보시면 .. 2009. 10. 31.
(JSP) JSP에서 자료를 엑셀로 다운받기/저장하기 JSP에서 자료를 엑셀로 다운받기/저장하기 엑셀로 보여질 페이지에 삽입 위와 같이 처리했는데 한글이 깨지는 경우 명시적으로 아래 부분을 HTML 코드에 추가 2009. 10. 31.
(JSP) JSP 세션으로 로그인 상태 지속 아이디와 패스워드를 넣고 로긴을 하면 웹페이지를 종료시키지 않은 이상 계속 로그인 상태로 웹서핑을 하는데 비접속자와 구분을 위해 꼭 필요하다. 진짜 구식 방법으로 모든 웹페이지에 아이디 정보를 넘겨주는 방법도 있지만 세션에 저장하게 되면 간단하게 어느 웹페이지에서나 한줄의 명령어로 아이디를 불러와서 개인정보도 불러올 수 있게 된다. * 세션의 사용 * ┌───────────┬────────────────────────────┐ │ │ session.setAttribute("mySession", "session value"); │ │ 세션의 생성 ├────────────────────────────┤ │ │ mySession이란 이름을 가진 세션에 session value란 │ │ │ 값을 설정한다. │ .. 2009. 10. 31.
반응형