Click to See Complete Forum and Search --> : Problem in passing values from one dll to another


Kamal Kumar
August 25th, 2000, 07:12 PM
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

Bill Crawley
August 31st, 2000, 04:59 AM
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.

Kamal Kumar
August 31st, 2000, 11:19 AM
Hi ,

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

thanks
kamal