Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
PROTECTED] To: u2-users@listserver.u2ug.org Sent: Sunday, January 23, 2005 9:31 PM Subject: [U2] UniObjects and VB.Net I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net application. I am populating a UniDynArray with a file parser. The Array is large, more then 300 attributes

RE: [U2] UniObjects and VB.Net

2005-01-24 Thread Martin Scholl
@listserver.u2ug.org Subject: Re: [U2] UniObjects and VB.Net The words thread safe leap to mind. If there are multiple threads and no locks then mangling could be expected if a later launched thread assaults part of the array before the earlier launched thread writes it back. Just a thought. BobJ - Original

Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
an answer, please. BobJ - Original Message - From: Martin Scholl [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, January 24, 2005 7:22 AM Subject: RE: [U2] UniObjects and VB.Net Bob, that is what what I observe. Here is what I believe is happening: VS.Not has a 'thunking

RE: [U2] UniObjects and VB.Net

2005-01-24 Thread Martin Scholl
, January 24, 2005 8:19 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniObjects and VB.Net That's definitely available with any of the .net languages and probably could be gerry rigged simply by setting a semaphore. It also might mean that the thing runs slow enough to be useless. Probably

Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
@listserver.u2ug.org Sent: Monday, January 24, 2005 2:06 PM Subject: RE: [U2] UniObjects and VB.Net Okay, I got it to limp through the code. Not beautiful, but I am not getting mangled UniDynArrays anymore. Here is what I do. After I execute one line of UniDynArray gymnastics, I check if the object has

[U2] UniObjects and VB.Net

2005-01-23 Thread Martin Scholl
I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net application. I am populating a UniDynArray with a file parser. The Array is large, more then 300 attributes. When I run this parser, my array is mangled. Attribute contents are mixed with each other, attribute counts don't match

RE: [U2] UniObjects and VB.Net

2005-01-23 Thread David Jordan
: Monday, 24 January 2005 1:31 PM To: u2-users@listserver.u2ug.org Subject: [U2] UniObjects and VB.Net I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net application. I am populating a UniDynArray with a file parser. The Array is large, more then 300 attributes. When I run