Private Sub cmdOk_Click()
On Error GoTo ERROR
Dim o As Integer
Dim i As Integer, r As Integer, c As Integer
Dim j As Integer
Dim sname As String
Dim sData As String
Dim sValue As String
Dim sNameAlise As String
Dim sDescription As String
Dim sModuleName As String
Dim iCount As Integer, iStrPos As Integer
Dim iRowNo As Integer, iDataRow As Integer, iLen As Integer, lngLstRow1 As Integer, sumRow As Integer
Dim s1 As String
Dim rngCell As Range
j = 3
iCount = 2
o = 0
Columns("B").ColumnWidth = 25
If m_ListBox2.ListCount <= 0 Then
If MsgBox("No Tags To Display, Do You Want To Close Template?...", vbYesNo) = vbYes Then
ActiveWorkbook.Saved = True
ActiveWorkbook.Close
Me.Hide
Exit Sub
Else
Exit Sub
End If
End If
o = 1
If ThisWorkbook.g_EditTemplate = True Then
ThisWorkbook.myobject.xlAppSTD.Application.DisplayAlerts = False
ThisWorkbook.myobject.xlAppSTD.ActiveWorkbook.Saved = True
ThisWorkbook.myobject.xlAppSTD.ActiveWorkbook.Close
If ThisWorkbook.iTempType = 0 Then
Excel.Application.Workbooks.Open (ThisWorkbook.sAppPath & "\StdTemplate.xltx")
Else
Excel.Application.Workbooks.Open (ThisWorkbook.sAppPath & "\StdAlarmTemplate.xltx")
End If
Set ThisWorkbook.myobject.xlAppSTD = Excel.Application
ThisWorkbook.myobject.xlAppSTD.Visible = True
ThisWorkbook.myobject.xlAppSTD.ActiveWorkbook.Activate
ActiveWorkbook.Sheets("Report").Activate
TemplateMEnu.AddTemplateMenus
ThisWorkbook.g_EditTemplate = False
End If
o = 2
If ThisWorkbook.iTempType = 0 Then
Cells(1, 1).Interior.Color = RGB(255, 198, 198)
Cells(2, 1).Interior.Color = RGB(221, 221, 221)
Cells(1, 2).Interior.Color = RGB(255, 198, 198)
Cells(2, 2).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_Data, 1).Interior.Color = RGB(199, 254, 200)
Cells(ThisWorkbook.g_Data, 2).Interior.Color = RGB(199, 254, 200)
Cells(ThisWorkbook.g_Footer, 1).Interior.Color = RGB(210, 210, 255)
Cells(ThisWorkbook.g_Footer, 2).Interior.Color = RGB(210, 210, 255)
Cells(ThisWorkbook.g_PageEnd, 1).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_PageEnd, 2).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_wbRow1, 1).Interior.Color = RGB(255, 255, 198)
Cells(ThisWorkbook.g_wbRow1, 2).Interior.Color = RGB(255, 255, 198)
Cells(ThisWorkbook.g_wbRow2, 1).Interior.Color = RGB(255, 255, 198)
Cells(ThisWorkbook.g_wbRow2, 2).Interior.Color = RGB(255, 255, 198)
ElseIf ThisWorkbook.iTempType = 1 Then
For i = 1 To 11
Cells(1, i).Interior.Color = RGB(255, 198, 198)
Cells(2, i).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_Data, i).Interior.Color = RGB(199, 254, 200)
Cells(ThisWorkbook.g_Footer, i).Interior.Color = RGB(210, 210, 255)
Cells(ThisWorkbook.g_PageEnd, i).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_wbRow1, i).Interior.Color = RGB(255, 255, 198)
Next
End If
If FrmReportTypes.sname = FIVE_MIN_DAILY_REPORT Then
Cells(1, 2) = FIVE_MIN_DAILY_REPORT
ElseIf FrmReportTypes.sname = FIFTEEN_MIN_DAILY_REPORT Then
Cells(1, 2) = FIFTEEN_MIN_DAILY_REPORT
ElseIf FrmReportTypes.sname = HR_REPORT Then
Cells(1, 2) = HR_REPORT
ElseIf FrmReportTypes.sname = WEEKLY_REPORT Then
Cells(1, 2) = WEEKLY_REPORT
ElseIf FrmReportTypes.sname = MONTHLY_REPORT Then
Cells(1, 2) = MONTHLY_REPORT
ElseIf FrmReportTypes.sname = YEARLY_REPORT Then
Cells(1, 2) = YEARLY_REPORT
ElseIf FrmReportTypes.sname = DAILY_REPORT Then
Cells(1, 2) = DAILY_REPORT
ElseIf FrmReportTypes.sname = ONE_MIN_DAILY_REPORT Then
Cells(1, 2) = ONE_MIN_DAILY_REPORT
ElseIf ThisWorkbook.iTempType = 1 Then
Cells(1, 2) = "ALARM"
End If
iRowNo = ThisWorkbook.g_wbRow1
o = 3
For i = 0 To m_ListBox2.ListCount - 1
If ThisWorkbook.iTempType = 0 Then
sname = m_ListBox2.List(i)
iCount = iCount + 1
Cells(2, iCount) = sname
sNameAlise = sname
iDataRow = ThisWorkbook.g_Data
iLen = Len(sname)
iStrPos = InStr(sname, ".")
sDescription = Left(sname, iStrPos - 1)
iStrPos = InStrRev(sname, ".", , vbTextCompare)
sNameAlise = Left(sname, iStrPos - 1)
iStrPos = InStrRev(sname, ".", , vbTextCompare)
sModuleName = Right(sname, iLen - iStrPos)
Cells(1, iCount).Interior.Color = RGB(255, 198, 198)
Cells(2, iCount).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_Data, iCount).Interior.Color = RGB(199, 254, 200)
Cells(ThisWorkbook.g_Footer, iCount).Interior.Color = RGB(210, 210, 255)
Cells(ThisWorkbook.g_PageEnd, iCount).Interior.Color = RGB(221, 221, 221)
Cells(ThisWorkbook.g_wbRow1, iCount).Interior.Color = RGB(255, 255, 198)
Cells(ThisWorkbook.g_wbRow2, iCount).Interior.Color = RGB(255, 255, 198)
Cells(3, iCount) = sDescription
Cells(iDataRow, iCount) = sname
Cells(4, iCount) = sModuleName
ElseIf ThisWorkbook.iTempType = 1 Then
sname = m_ListBox2.List(i)
iCount = iCount + 1
Cells(2, iCount) = sname
sNameAlise = sname
iDataRow = ThisWorkbook.g_Data
iLen = Len(sname)
iStrPos = InStr(sname, ".")
sDescription = Left(sname, iStrPos - 1)
iStrPos = InStrRev(sname, ".", , vbTextCompare)
sNameAlise = Left(sname, iStrPos - 1)
iStrPos = InStrRev(sname, ".", , vbTextCompare)
sModuleName = Right(sname, iLen - iStrPos)
Cells(1, iCount).Interior.Color = RGB(255, 198, 198)
Cells(2, iCount).Interior.Color = RGB(221, 221, 221)
End If
Next
Range("B" & ThisWorkbook.g_wbRow1 & ":B" & ThisWorkbook.g_wbRow1).NumberFormat = "@" ''Range("B" & ThisWorkbook.g_wbRow1 & ":B35").NumberFormat = "@"
Dim lngLstCol As Long, lngLstRow As Long
lngLstRow = ActiveSheet.UsedRange.Rows.Count
lngLstCol = ActiveSheet.UsedRange.Columns.Count
Range(Cells(ThisWorkbook.g_Data, 1), Cells(lngLstRow, lngLstCol)).HorizontalAlignment = xlLeft
Range(Cells(ThisWorkbook.g_Data, 1), Cells(lngLstRow, lngLstCol)).Select
With selection.Borders
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
' .WrapText = True
End With
o = 4
If cboMin.Value = False Then
Rows(Application.Match("Min", Range("A1:A" & lngLstRow), 0)).EntireRow.Hidden = True
End If
If cboMax.Value = False Then
Rows(Application.Match("Max", Range("A1:A" & lngLstRow), 0)).EntireRow.Hidden = True
End If
If cboavg.Value = False Then
Rows(Application.Match("Average", Range("A1:A" & lngLstRow), 0)).EntireRow.Hidden = True
End If
If cbosum.Value = False Then
Rows(Application.Match("Sum", Range("A1:A" & lngLstRow), 0)).EntireRow.Hidden = True
End If
Range(Cells(1, 1), Cells(lngLstRow, lngLstCol)).WrapText = True
ThisWorkbook.bNewTemplate = True
FrmReportTypes.Hide
Exit Sub
ERROR:
If o = 0 Then
WriteLog "Error in FrmReportTypes_CmdOk_Click listbox error"
ElseIf o = 1 Then
WriteLog "Error in FrmReportTypes_CmdOk_Click edit template functionality"
ElseIf o = 2 Then
WriteLog "Error in FrmReportTypes_CmdOk_Click Template formatting"
ElseIf o = 3 Then
WriteLog "Error in FrmReportTypes_CmdOk_Click display data in Template"
ElseIf o = 4 Then
WriteLog "Error in FrmReportTypes_CmdOk_Click Footer Functions"
End If
End Sub