| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- es6
- Eclipse
- GIT
- Express
- SQL
- Java
- window
- hadoop
- xPlatform
- Python
- SSL
- JavaScript
- IntelliJ
- Spring
- plugin
- MSSQL
- R
- tomcat
- vaadin
- mapreduce
- SPC
- Kotlin
- react
- 보조정렬
- 공정능력
- table
- mybatis
- NPM
- Android
- Sqoop
- Today
- Total
목록C# (21)
DBILITY
외부 ocx를 등록하고 디자인타임에 별문제 없었다. 실행하니 클래스가 등록되지 않았다라니... 분명 3년전에는 이상이 없었는데, OS때문일까, 플랫폼때문일까, 닷넷프레임워크 버전때문일까..그때는 어떻게 했는지 고민끝에.. regsvr32....혹시..빌드속성에서 플랫폼 대상을 32비트 기본사용으로 바꾸니 잘 된다..
RowHeader에 표시하는건 많이 있던데, 특정셀에 해보았다. CellPaint시에.. var centerFormat = new StringFormat { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center }; var cellBounds = new Rectangle(e.CellBounds.Left, e.CellBounds.Top, e.CellBounds.Width, e.CellBounds.Height); e.PaintBackground(e.ClipBounds, true); e.Graphics.DrawString(string.Format("{0}", e.RowIndex + 1), e.CellStyle.Font, new S..
Productivity Power Tools을 사용하지 않는다면 Output enhancer Extension to add colors to Visual Studio output windowC# outline 2015 Adds all braces {} outlining for C# editorRockMargin 2015 Source code outline viewGo To DefinitionIndent GuidesCase convertercodemaid
[System.ComponentModel.DefaultValue(false)] 과 직접 할당도 가능하다. 그런데,몇 버전부터 인지..기억이...ㅎㅎ //[System.ComponentModel.DefaultValue(false)] public static bool useWaitCursor { get; set; } = false;
Assembly.GetExecutingAssembly().GetName().Name 실행프로그램명 Assembly.GetExecutingAssembly().EntryPoint.DeclaringType.Namespace 실행프로그램 네임스페이스 Assembly.GetEntryAssembly().EntryPoint.DeclaringType.Namespace dll에서 실행프로그램 네이스페이스 참조시 기본 네임스페이스가 아니거나,실행프로그램과 다른 네임스페이스를 사용할때나 다이나믹로딩 등 Properties.Settings로 접근이 안된다... 명시적으로 네임스페이스를 줄 수 도 있으나, 어느 세월에~ 응용프로그램 설정에서 입력한 속성에 접근할때 아래와 같이 해도 된다.참..어렵다. var config = C..