示例#1
0
        private void btnExcelExport_Click(object sender, EventArgs e)
        {
            /****************************************************
            * Comment : SS의 데이터를 Excel파일로 내보내기 한다.
            *
            * Created By : 안시홍(2010-08-10)
            *
            * Modified By :
            ****************************************************/
            try
            {
                Cursor.Current = Cursors.WaitCursor;

                SS.ExportExcel();
            }
            catch (Exception ex)
            {
                CmnFunction.ShowMsgBox(ex.Message);
            }
            finally
            {
                Cursor.Current = Cursors.Default;
            }
        }
示例#2
0
        private void bntExcelExport_Click(object sender, EventArgs e)
        {
            /****************************************************
            * comment : Sheet의 데이터를 Excel로 내보낸다.
            *
            * created by : bee-jae jung(2010-09-02-목요일)
            *
            * modified by : bee-jae jung(2010-09-02-목요일)
            ****************************************************/
            try
            {
                Cursor.Current = Cursors.WaitCursor;

                SS.ExportExcel();
            }
            catch (Exception ex)
            {
                CmnFunction.ShowMsgBox(ex.Message);
            }
            finally
            {
                Cursor.Current = Cursors.Default;
            }
        }