Hello,
In my local web server login.asp page, it calls a A.dll which is registered on my local machine.
Now I want to go throught the A.dll code so I set a stop point in the asp page. I have the source code of A.dll and I open it in VB IDE and set a break point at function GetSeqNoVnt and keep it running.
Part of my login.asp page: (B is one of the class of project A and GetSeqNoVnt is a function of class B)
line 11: Set objMTSSeqNo = server.createobject(A.B)
line 12: stop
line 13: blnRslt = objMTSSeqNo.GetSeqNoVnt(x, y)
line 14: Session(Application("cstWEBSESSION") = blngWebSession
Because VB IDE is runing Project A so I suppose that line 13 will go through the function GETSeqNoVnt(x, y) in VB IDE line by line so that I can debug it. Actually, It won't go inside the code of GetSeqNoVnt. It just got the value for blnRslt and go to line 14. My collegue told me that it should always check the IDE first, if not there, then go to look for corresponding dll. but mine seems always go to the registered dll directly. I am using W2k, It works fine on some other colleagues' NT . I don't know if it is because of W2K or I need some other setting.
(* all the above is part of our company homepage, I am testing something on my local machine. That's why I want to go through the code)
Forgive my poor English.
Thanks
Yuli
In my local web server login.asp page, it calls a A.dll which is registered on my local machine.
Now I want to go throught the A.dll code so I set a stop point in the asp page. I have the source code of A.dll and I open it in VB IDE and set a break point at function GetSeqNoVnt and keep it running.
Part of my login.asp page: (B is one of the class of project A and GetSeqNoVnt is a function of class B)
line 11: Set objMTSSeqNo = server.createobject(A.B)
line 12: stop
line 13: blnRslt = objMTSSeqNo.GetSeqNoVnt(x, y)
line 14: Session(Application("cstWEBSESSION") = blngWebSession
Because VB IDE is runing Project A so I suppose that line 13 will go through the function GETSeqNoVnt(x, y) in VB IDE line by line so that I can debug it. Actually, It won't go inside the code of GetSeqNoVnt. It just got the value for blnRslt and go to line 14. My collegue told me that it should always check the IDE first, if not there, then go to look for corresponding dll. but mine seems always go to the registered dll directly. I am using W2k, It works fine on some other colleagues' NT . I don't know if it is because of W2K or I need some other setting.
(* all the above is part of our company homepage, I am testing something on my local machine. That's why I want to go through the code)
Forgive my poor English.
Thanks
Yuli