일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 윈폼
- 단축키
- CONVERT()
- MSSQL
- replace()
- 엑셀
- IIS
- 이클립스
- 윈도우
- 마이크로소프트
- javascript
- 프로시저
- 리포팅서비스
- Winform
- microsoft
- DataGrid
- c#
- ASP
- jQuery
- aspnet
- SSRS
- windows
- 비주얼스튜디오
- 오라클
- 자바스크립트
- MS
- 태그를 입력해 주세요.
- Excel
- oracle
- attr()
Archives
- Today
- Total
목록OpenFileDialog (1)
DJ메탈짱™의 Free Style
[C#, Winform, 윈폼] OpenFileDialog, 파일불러오기, Text, FileStream, StreamReader, List 컬렉션에 저장
OpenFileDialog 컨트롤을 사용하여 파일을 불러오고, 불러온 파일의 내용을 List 컬렉션에 담아서 반환한다. private void OpenFileDialog() { List rList = new List(); using (OpenFileDialog opd = new OpenFileDialog()) { opd.DefaultExt = "All files"; // 기본 파일타입 설정 opd.Filter = "All files (*.*)|*.*"; // 파일타입 opd.Multiselect = false; // 다중선택되지 않도록. string strAppDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); opd.Initi..
일(job)/MS(Microsoft)
2016. 1. 7. 13:50