1 Attachment(s)
!RESOLVED! Types and Arrays
What I'm working with...
Public Type CCC_RULE_CONDITIONS
Text As String
ID As Long
Recurrance As Long
SQLUpdated As Date
End Type
Public Type MONITORED_TICKETS
Ticket_Number As Long
MsgCount As Long
MsgDate As Date
CheckDate As Date
Excluded As Boolean
End Type
Public Type CCC_RULES
SelectFrom As String
ID As Long
Association As Long
Type As Long
SQLUpdated As Date
LastRun As Date
Exclusive As Boolean
RecurranceLimit As Long
Tags() As String
TagCount As Long
Condition() As CCC_RULE_CONDITIONS
ConditionCount As Long
CurrentTicket() As MONITORED_TICKETS
TicketCount As Long
End Type
Public ccc_Rule() As CCC_RULES
Public Type CCC_TIMER_SESSION
EscalationClock As Date
CurrentRule As Long
RuleCount As Long
End Type
Public ccc_Timer As CCC_TIMER_SESSION
In A Nut Shell...
I'm getting the following error..."This array is fixed or temporarily locked". The first few times I debugged the program, I didn't get this error. Lately, each time I run the program, it seems that less and less is able to be stored.
If more explaination is necessary, I'll certainly give it a go.
Thank you.
Oh yeah. attached is a file that is an example of what the running type is used for.