1. Maximum Capacity for a Dictionary Object
Hello, Is there a maximum capacity for a Dictionary object when implemented in a VB 6 DLL? In my application, I seem to be "maxing out" at a little over 32,000 entries. This seems first, like an odd place to limit and second, completely undocumented anywhere that I can find. At this upper level, the DLL starts generating "overflow" messages. In our log file: Nov-16-2006 15:30:24: ActiveX: Overflow Not very explicable, unfortunately. Thanks. mp -- 'cat' is not recognized as an internal or external command, operable program or batch file.
2. PowerPoint VBA - Picture Object, OLE Object file extension, type, or format
3. Passing Object Array back to Variant array.
Hello, I am having trouble upgrading my VB apps to .net. When i started at my company there was a dll created here in vb6, and i need to use that dll for many functions that would take too much time to re-create for the limit that i am given. I have to create a new app in .net, per my instructions, but the dll uses variant arrays, and i keep getting an error whenever i pass an object array from my .net app to the vb6 dll which needs to receive a variant array. The error "Specified array was not of the expected type." always occurs. I do not know what else to do besides going into the dll (which i have been told specifically not to touch as of this time since there are too many other apps that use it.) Any help in this matter would be greatly appreciated. Thanks, Chris
4. Casting an Array of Objects to a typed Array - VB.Net
5. list of objects vs Array of objects
Hi Can anyony please tell me why I should use a List of objects instead of an array of objects ? Thanx John
6. Creating an array of objects when the object type is not known at design time - VB.Net
7. object w/collection of objects that contain arrays
Hi, I have a primative object oPrim of type cPrim w/properties of docName as string, lineNumbers() as integer I have an analysis object oAnal of type cAnal w/properties of docNames() as string, colAnalDocs as collection, and a method mParseDocs of type bool The method populates the collection colAnalDocs with objects of type cPrim: public colAnalDocs as collection for ii = lbound(docNames) to ubound(docNames) set oPrim = new cPrim oPrim.docName=docNames(ii) 'macro stuff returning line number array oPrim.lineNumbers = returned_macro_stuff colAnalDocs.add oPrim next ii My app creates the analysis object: dim oAnal as cAnal dim bOK as bool set oAnal = new cAnal oAnal.docNames(1) = "blah.doc" bOK = oAnal.mParseDocs In my app, when I loop thru the lineNumers, I get the following errors: dim oPrim as cPrim for each oPrim in oAnalDoc.oPrim db.print cstr(oDoc.lineNumbers(0)) 'wrong number of arguments or invalid property assignment 'or dp.print cstr(oDoc.lineNumbers) 'type mismatch next oPrim Using the locals window, I see the may oPrim is of type cPrim/cPrim but drilling into oAnalDoc, it's variant/Object/cPrim. Note that I can access the other properties of oPrim just fine. Help appreciated. -Chris