Results 1 to 3 of 3

Thread: Having probs with Split Function

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2002
    Posts
    9

    Thumbs up

    Thanks, thats got pass the "Subscript out of range: 'chk' " error, but now for some reason I'm getting Type Missmatch, yet both the array tt and chk are both declared as strings.

  2. #2
    Frenzied Member nishantp's Avatar
    Join Date
    Jan 2001
    Location
    Where you least expect me to be
    Posts
    1,375
    Are you sure Chk was declared as a dynamic array?
    You just proved that sig advertisements work.

  3. #3
    WALDO
    Guest
    you need to declare chk one of two ways
    VB Code:
    1. Dim chk As Variant
    2. 'Or
    3. Dim chk() As String

    If it's VBScript (Active Server Pages, HTML), then it can only be declared like this:
    Code:
    Dim chk

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