Hi ...
I use VB6 on NT4 ... I create an object the following way ...
This works fine, nothing the mather ... I can work with it and so on ...
Now I free it with the following code ...
This also works fine (I think), because the object doesn't excist anymore ...
Unfortunately, it seems to be staying in the memory which causes the dr. Watson error when closing ... But when my programm is running, I can do creating and free-ing as many times as I want ... Just when closing my application dr. Watson keeps bugging me and trowing me out of VB ...
Hope my problem is clear to all ...
Waiting for any answers ...
Peter
I use VB6 on NT4 ... I create an object the following way ...
code:
1
2
| Dim myOLE As Object
Set myOLE = CreateObject("TDSAPI.FileServer") |
This works fine, nothing the mather ... I can work with it and so on ...
Now I free it with the following code ...
code:
1
| Set myOLE = Nothing |
This also works fine (I think), because the object doesn't excist anymore ...
Unfortunately, it seems to be staying in the memory which causes the dr. Watson error when closing ... But when my programm is running, I can do creating and free-ing as many times as I want ... Just when closing my application dr. Watson keeps bugging me and trowing me out of VB ...
Hope my problem is clear to all ...
Waiting for any answers ...
Peter