Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
182 views

How to find a leak in User Objects

Our .Net 4.0 application has a leak that causes it to crash after extended use. Upon investigation I determined that "User Objects" were leaking. A User object is a windows resource as described here: ...
2
votes
2answers
305 views

Java Swing: how do I define how a JTree displays the “user object”?

When using a JTree, a "user object" of a DefaultMutableTreeNode can be set. This can be of any kind, but to display it, its toString() value is used. This is not what I need. How can I change the way ...
1
vote
1answer
835 views

Not enough memory or not enough handles?

I am working on a large scale project where a custom (pretty good and robust) framework has been provided and we have to use that for showing up forms and views. There is abstract class ...
1
vote
1answer
2k views

PHP Memcache user created objects

Need some help about with Memcache. I have created a class and want to store its objects in Memcache, finding trouble doing so please tell me where am I going wrong. Following is my code // Class ...
1
vote
1answer
2k views

user object with TreeNode in C#

Can i tie a user object to a TreeNode in C#?
0
votes
4answers
166 views

Arrays in PowerBuilder

I have this code n_userobject inv_userobject[] For i = 1 to dw_1.Rowcount() inv_userobject[i] = create n_userobject . . . NEXT dw_1.rowcount() returns only 210 rows. Its so odd that in the ...
0
votes
2answers
118 views

Design efficient user interactive event log so that i won't excede my 10000 user object limit

i have a problem .. in my application i get some event-related information , so for event x i should get a form window in which i do some sort of things ( enter some text and click on a button ) My ...