일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- microsoft
- 단축키
- 프로시저
- Winform
- SSRS
- Excel
- 윈폼
- 이클립스
- 리포팅서비스
- attr()
- MS
- 자바스크립트
- aspnet
- oracle
- IIS
- 비주얼스튜디오
- DataGrid
- 엑셀
- CONVERT()
- 마이크로소프트
- MSSQL
- 윈도우
- ASP
- jQuery
- c#
- javascript
- replace()
- windows
- 오라클
- 태그를 입력해 주세요.
- Today
- Total
목록일(job)/MS(Microsoft) (138)
DJ메탈짱™의 Free Style
Infragstics, Wingrid, Cell, RightClick, ContextMenu, MenuItems, 울트라그리드, 셀, 우클릭, 메뉴아이템 /// /// 셀에 대한 마우스 우클릭(ContextMenu)시 MenuItem 설정 /// /// private void ShowContextMenu(Point mousePoint) { ContextMenu cMenu = new ContextMenu(); for (int i = 0; i < 3; i++) { cMenu.MenuItems.Add(i.ToString(), MenuItemClick); } foreach (MenuItem c in cMenu.MenuItems) { if (c.Index == 1) { c.Enabled = false; } } c..
Cell, Row에 Border 가 나오지 않도록 설정. 속성창 > DisplayLayout > Override > CellAppearance > BorderColor = "Transparent"속성창 > DisplayLayout > Override > RowAppearance > BorderColor = "Transparent" -------------------------------------------------------------------------------------------아래는 Online 도움말....using Infragistics.Win; private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraW..
/// /// 1.설정된 row, column에 따라 테이블 레이아웃 그려주기. /// 2.xml결과값에 따라 해당 영역의 속성값확인. /// 3.해당 클래스의 시설물,Seat 등의 속성에 따른 아이콘 & 툴팁 설정. /// /// /// private void SeatGenerateTableLayOut(int columnCount, int rowCount) { //Clear out the existing controls, we are generating a new table layout keTableLayoutPanel1.Controls.Clear(); //Clear out the existing row and column styles keTableLayoutPanel1.ColumnStyles.Clea..
그림1) 1. Properties의 Resources.resx 더블클릭하면 좌측화면과 같이 등록된 파일들이 보인다. 2. 리소스 추가 메뉴를 통해 "기존 파일 추가" 또는 새롭게 추가할 수 있다. 그림2) 선택된 리소스 파일의 빌드 작업 메뉴를 "포함 리소스" 선택 후 빌드 하면 cs에서 쉽게 접근가능. 예제) Label 컨트롤의 배경이미지를 설정하는 방법. // 리소스에 등록된 11.gif 이미지 파일을 사용하는 방법 label1.Appearance.Image = Properties.Resources._11;
Grid속성창에서 DisplayLayout > GroupByBox > Hidden = "True"
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Bands[0].ColHeaders.Visible = false; }
using System.Reflection; MethodBase.GetCurrentMethod().Name;
아래 예제는 Element 기준으로 , Element 값을 반환하는 방법인데… ElementAt(1) 메소드를 통해 연속적으로 동일하게 있는 Element가 하나면 index 예외오류가 발생함. 그럴 때 사용하는 메소드는 ElementAt à ElementAtOrDefault() 을 사용하면 해결됨. 정보 1 2 정보 3 var xmlRlt = (from xml in xmlDoc.Descendants("body") select new { columnCharacteristic1= (string)xml.Element("aaa").Value, //만약 ElemenetAt(1)이 없다면 공백 반환. columnCharacteristic2= (string)xml.Elements("bbb").Elemen..
동일한 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..