CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2000
    Posts
    3

    Problem in passing values from one dll to another

    Hi ,

    My Asp Page first calls ddl1 and in the dll1 i am make a request for dll2 . the problem like this if i run without making dll1 just by press F5 in vb (but dll2 is made and registered ) i have no problems. but once both dll's are made and registered in mts it fails saying collection not found at a particular line .the line where it fails is where i am passing the values to dll2. can any one help in this regards



    Thanks


  2. #2
    Join Date
    Aug 2000
    Location
    Essex, Uk
    Posts
    1,214

    Re: Problem in passing values from one dll to another

    Hi,

    Check the instancing under MTS. Do a check to ensure an instance of dll2 is present. i.e. if not isnothing ......
    Does dll2 have data passed to it correctly from dll1 if used outside MTS. If it does then it's an MTS problem (probably as above 'an instanceing problem on the dll'). If it still doesn't work outside MTS then it's a class problem. Calling Dll2 from a form with out goiing through Dll1 just shows that the basic dll is ok.

    If you find my answers helpful, dont forget to rate me

  3. #3
    Join Date
    Aug 2000
    Posts
    3

    Re: Problem in passing values from one dll to another

    Hi ,

    Thanks for your response . i was able to sort out the problem

    thanks
    kamal


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

Featured