일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jQuery
- c#
- 태그를 입력해 주세요.
- DataGrid
- microsoft
- IIS
- oracle
- 엑셀
- Winform
- CONVERT()
- replace()
- 비주얼스튜디오
- attr()
- 윈폼
- 프로시저
- 자바스크립트
- aspnet
- ASP
- 단축키
- javascript
- 리포팅서비스
- 윈도우
- MS
- 오라클
- MSSQL
- SSRS
- Excel
- 이클립스
- windows
- 마이크로소프트
- Today
- Total
목록xml (5)
DJ메탈짱™의 Free Style
notepad++ 플러그인 JSTool 자바스크립트 자동정렬 기능 ==> notepad++ 플러그인 JSTool 플러그인 > Plugin Manager > Show Plugin Manager --> JSTool 설치 --> 단축키 Ctrl + Alt + M notepad++ 플러그인 XML Tools XML 자동정렬 기능 ==> notepad++ 플러그인 XML Tools 플러그인 > Plugin Manager > Show Plugin Manager --> XML Tools 설치 --> 단축키 Ctrl + Shift + Alt + B
/// DataSet 얻어오기 /// 프로시져명 /// 프로시져 파라미터 /// DataSet public static DataSet GetDataSet(string strName, ArrayList param)--> 클래스 및 메소드 생성후 사용시 위와 같이 작성한 주석을 보여주도록 설정하려면 XML파일이 존재해야함. Project Properties (Build Tab)ㄱ. 빌드시 XML파일 생성- Class에 작성된 Summary를 보여주기 위해선 XML파일이 필요함.- 출력 경로와 XML 문서 파일은 반드시 같은 디렉토리내에 존재해야함. Method Summary Method Parameter
이클립스 오류 build.xml (ant) Validation Error (Problems) 아래와 같은 Validation 오류가 발생하여 찝찝하게 만들어 버리는...XML Validator 설정을 꺼주니 오류가 해결됨. - referenced file contains errors 어쩌구 저쩌구... - the content of element type project must match project|target [ 해결방안 ] Properties > Validation you have two options: 1- Configure Workspace Settings (disable the validation for the current workspace) uncheck the manual and bui..
동일한 Depth의 Element의 값들을 반환하는 경우 아래 (예제2) 코드 참고. (예제1)처럼 Descendants을 통해서 반복문의 경우에는 동일한 Element의 값을 반환하지는 않는다. A W A B A C A D W A (예제1) StringBuilder sb = new StringBuilder(); var rltLinq = from config1 in xmlDoc.Descendants("cabinColumnDetails") select new { cabinColumnDetails = (string)config1.Element("columnCharacteristic").Value }; foreach (var rlt in rltLinq) { sb.AppendLine("cabinColumnDet..
xml파싱하여 XML Document로 설정하는 (방법1) - \bin\Debug\ 에 xml파일을 copy하여 설정하는 방법. XDocument xmlDoc = XDocument.Load(@"samplexml.xml"); (방법2) – Resource에 xml파일을 추가한 방법. XDocument xmlDoc = XDocument.Parse(Properties.Resources.samplexml); var source = from aa in xmlDoc.Descendants("root")// element의 기준점 select new { cabinClass = aa.Descendants("aaa").ElementAt(0).Value,// root하위에 aaa element의 value cabinCapa..