Results 1 to 6 of 6

Thread: !RESOLVED! Types and Arrays

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jul 2002
    Location
    California
    Posts
    77

    !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.
    Attached Images Attached Images  
    Last edited by Virgil J. Schmidt; Feb 27th, 2003 at 02:52 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width