ExportSelection() 메서드에서 Case 문 수정
이 부분에서는 각 ExportFormatType case 문에 대해 파일 이름 문자열을 설정하는 방법을 설명합니다.
내용 참조: ExportSelection() 메서드에서 case 문을 수정하려면
ExportSelection() 메서드에서 case 문을 수정하려면
ExportSelection() 메서드 안에서 문자열 변수를 선언하고 이 변수를 빈 문자열로 인스턴스화합니다.
Dim myFileName As String = ""
string fileName = "";
ExportFormatType.CrystalReport case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .rpt인 문서의 이름을 추가합니다.
myFileName = exportPath & "Report.rpt"
myFileName = exportPath + "Report.rpt";
ExportFormatType.RichText case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .rtf인 문서의 이름을 추가합니다.
myFileName = exportPath & "RichTextFormat.rtf"
myFileName = exportPath + "RichTextFormat.rtf";
ExportFormatType.WordForWindows case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .doc인 문서의 이름을 추가합니다.
myFileName = exportPath & "Word.doc"
fileName = exportPath + "Word.doc";
ExportFormatType.Excel case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .xls인 문서의 이름을 추가합니다.
myFileName = exportPath & "Excel.xls"
fileName = exportPath + "Excel.xls";
ExportFormatType.PortableDocFormat case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .pdf인 문서의 이름을 추가합니다.
myFileName = exportPath & "PortableDoc.pdf"
fileName = exportPath + "PortableDoc.pdf";
ExportFormatType.HTML32 case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .html인 문서의 이름을 추가합니다.
myFileName = exportPath & "HTML32.html"
fileName = exportPath + "HTML32.html";
ExportFormatType.HTML40 case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .html인 문서의 이름을 추가합니다.
myFileName = exportPath & "HTML40.html"
fileName = exportPath + "HTML40.html";
ExportFormatType.ExcelRecord case 문 안에서 파일 이름 문자열을 exportPath 문자열로 설정하고 이 문자열 뒤에 파일 확장명이 .xls인 문서의 이름을 추가합니다.
myFileName = exportPath & "ExcelRecord.xls"
fileName = exportPath + "ExcelRecord.xls";