일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JQuery
- Python
- 가상환경
- SCADA
- DataTables
- pythoncom37.dll
- 명령어
- 맥코트
- checkbox
- STS
- LOG
- Eclipse
- 말라키
- error
- ORA-28002
- build
- Anaconda
- 리눅스
- Custom
- Linux
- 원한
- geckodriver
- 파이썬
- HMI
- 분노
- Today
- Total
목록Computer (97)
2010년 5월 1일, 2막
유니코드 첨자 표현법(substring) 닷넷은 기본적으로 문자열이 유니코드로 돼 있으므로 유니코드값을 알면 어떤 것이든 입력할 수 있습니다. string s = "\uxxxx" 와 같은 방식으로 입력하세요. textBox1.Text = "\u2075"; http://www.unicode.org/charts/charindex.html 출처 : http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=17&MaeulNo=8&no=40864&ref=40855
POI를 이용하여 Excel 파일을 control할 때,cell에 formula를 입력하였으나 결과가 제대로 나오지 않고 #REF! 와 같이 나오는 경우가 있다. 이 경우는... 각 cell의 formula를 강제로 실행하도록 한다. Recalculation of Formulas In certain cases you may want to force Excel to re-calculate formulas when the workbook is opened. Consider the following example: Open Excel and create a new workbook. On the first sheet set A1=1, B1=1, C1=A1+B1. Excel automatically calcula..
cmd set ORACLE_SID = 서비스명sqlplus 아이디/패스워드@서비스명 패스워드 재입력 ---------------------- ORA-28001: the password has expired 어쩌구 에러가 나오면서, DB연결이 실패할 때가 있다. 오랜 기간이 지나면 해당 id의 password가 자동으로 만료 되는지는 모르겠지만, 저 에러메시지는 만료되었다는 것을 말한다. 그러므로 해결하기 위해서는 오라클에서 SQL PLUS 실행해서 사용자명(ID) : 여기에 기존에 쓰던 ID를 넣으면, password가 expired 되었으니 새로 입력하라고 뜬다. 그러면 새로운 password를 쳐주고 확인을 위해서 한번 더 password를 쳐주면 암호가 재설정 되면서(원래의 암호로 쳐줘도 된다) 위..
Cafe24 서버에 다른 환경에서 컴파일된 class 파일을 바로 업로드 하면 제대로 작동이 안될 가능성이 높습니다. 따라서 java 파일을 업로드한 후 Cafe24 서버에서 컴파일 해주어야 합니다. Cafe24의 FAQ에 설명되어 있는 서블릿 컴파일을 위한 기본적인 명령어는 다음과 같습니다. (띄어쓰기에 주의해서 입력해야 합니다.) javac -d . -classpath /home/hosting_users/Cafe24아이디/tomcat/lib/servlet-api.jar 컴파일할파일이름.java 하지만 이는 서블릿을 컴파일하기 위한 명령어이고 iBatis나 Struts 등을 사용할 경우에는 이를 컴파일하기 위한 라이브러리를 classpath에 추가해야 합니다. 보통 ';' 나 ':'를 뒤에 붙여주어 추..
private void SaveLog(string log) { // Log 저장될 경로 m_logDicPath = string.Format("{0}\\log", Application.StartupPath); // Log 파일 이름 (로그가 생성된 일자를 기준으로 생성되게) m_logFilePath = string.Format("{0}\\{1}_log.txt", m_logDicPath, DateTime.Today.ToShortDateString()); // 기록될 Message를 만든다. string msg = string.Format("[{0}] {1}{2}", DateTime.Now.ToString("u"), log, Environment.NewLine); // Log를 기록할 폴더 유무를 확인후 생성..
DateTime DateTime? dateSample; dateSample.Value = null; //or Nullable dateSample2; dateSample2.Value = null;
http://expert0226.tistory.com/100 http://six605.tistory.com/420 http://blog.naver.com/PostView.nhn?blogId=marine694&logNo=110166067440 http://neofirst.tistory.com/151?srchid=BR1http://neofirst.tistory.com/151
DataGridView에 combobox cell을 추가한 상태에서 combobox의 값이 변경될 때 발생하는 이벤트 확인법 I want to handle the event when a value is changed in a ComboBox in a DataGridView cell. Theres the CellValueChanged event but that one doesn't fire until i click somewhere else inside the DataGridView. A simple ComboBox SelectedValueChanged does fire immidialy after a new value is selected. How can i add a listener to the com..
어떤 Table에 대하여 WHERE절을 string으로 적용가능한 방법. DataTable은 기본적으로 DefaultView라고 하는 속성을 가지고 있는데, 이는 DataTable에서 기본으로 제공하는 DataView로서 이를 통해 소트나 필터링 등을 할 수 있다. DataSet ds = new DataSet(); using (SqlConnection conn = new SqlConnection(cn)) { conn.Open(); SqlDataAdapter adpt = new SqlDataAdapter("SELECT * FROM AAA", conn); adpt.Fill(ds, "AAA"); } // DataTable.DefaultView를 사용하여 // 필터링 (name컬럼이 L로 시작하는 경우) Dat..
제대로 컴퓨터를 종료하지 않고 무작정 전원을 내리게 되면 윈도우는 다음에 켜질 때 하드디스크(HDD)에 문제가 발생했을 지 몰라서 자동으로 인식해서 체크하는 경우가 종종 있는데, 아래와 같은 메시지가 뜨면서 디스크 검사를 실행하지만 끝까지 검사를 다 완료를 하더라도 매번 부팅할 때마다 검사를 할 때가 있어요. checking file system on C:The type of the file system is NTFS, One of your disks needs to be checked for consistancy, youmay cancel the disk check, but it is strongly recommandedthat you continue,To skip disk checking, press..