Results 1 to 1 of 1

Thread: MTS Server or VB programming error??

Threaded View

  1. #1

    Thread Starter
    Super Moderator Wokawidget's Avatar
    Join Date
    Nov 2001
    Location
    Headingly Occupation: Classified
    Posts
    9,632

    Question MTS Server or VB programming error??

    Am running a DLL on an MTS Server...
    Have 2 Class Modules...
    In the 1st we have:
    VB Code:
    1. Private colExclude As Collection
    2.  
    3. Public Property Get Exclude() As Collection
    4.    Set Exclude = colExclude
    5. End Sub
    In the 2nd Module we have:
    VB Code:
    1. Public Sub AddProcedure(ByVal Text As String)
    2. Dim clsNew   As New ClassModule1
    3.    clsNew.Exclude.Add Text 'This is the line the error occurs.
    4.  
    5. '...Blah, Blah, Blah...rest of code...
    We get an Error 70: Permission Denied on the line above...
    If we log in as administrator this works fine, but when logged in as anyone else this line of code crashes.
    Both class modules are set up to run as MultiUse.....?????

    Any Ideas???

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