-
Notifications
You must be signed in to change notification settings - Fork 7
Crashes in VB6 #41
Copy link
Copy link
Closed
Description
I used your code library in VB6. I encountered a crash issue.
I implemented the Dictionary object variable call through a recursive function.
Private Function PaneList(ByVal panes As Collection, Optional listed As Dictionary) As Integer
Dim p, s$
For Each p In panes
s = ObjPtr(p)
If Not listed.Exists(s) Then
listed.Add s, ""
PaneList p.panes, listed
End If
Next
End FunctionMy project has a large amount of source code, and I only encounter problems if I don't call your Dictionary class.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels