일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- vaadin
- hadoop
- table
- window
- Android
- xPlatform
- SSL
- tomcat
- Python
- R
- SQL
- plugin
- MSSQL
- es6
- Sqoop
- Spring
- NPM
- mapreduce
- JavaScript
- mybatis
- Kotlin
- Express
- Java
- 공정능력
- react
- 보조정렬
- GIT
- SPC
- IntelliJ
- Today
- Total
목록C# (19)
DBILITY
Microsoft.R.Host.Client를 사용해 샘플을 작성하였다. 약 5시간 소요.RTVS나 RStudio처럼 개발할 수 도 있을 것으로 보인다.
https://reogrid.net/ ReoGrid - .NET Spreadsheet Component Excel Compatibility Loading and saving Excel format, including style, format, drawings and charts. Learn More » reogrid.net
기록해 두자. 어차피 기억하지 못할테니까..ㅎㅎ 리스트박스에 아이템을 추가하는 예제다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ex001 { public partial class ExamEnum : Form { public ExamEnum() { InitializeComponent(); } string strName = ":D"; private en..
외부 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..