12
votes
7answers
590 views
How can I write a generic container class that implements a given interface in C#?
Context: .NET 3.5, VS2008. I'm not sure about the title of this question, so feel free to comment about the title, too :-)
Here's the scenario: I have several classes, say Foo an …
0
votes
1answer
142 views
Zend Form and nested fieldsets/containers?
I have a form. I have a single element that needs to be wrapped in a div or fieldset (for formatting). Then I have two groups of elements, including the above, that I want to wrap …
3
votes
2answers
32 views
Custom container requirement to work with Qt’s foreach
What is the bare minimum amount of code to create a custom container that would work with Qt foreach macro?
I have this so far
template< class T >
class MyList
{
public:
…
2
votes
3answers
245 views
Is it possible to configure ms Unity container from an xml document and NOT from a file?
Is it possible to configure ms Unity container from an xml document and NOT from a file?
thx
1
vote
2answers
75 views
ie7 and ie8 ignore “margin:0px auto;”
http://blog.helpcurenow.org
I'm working on the development of this blog and it seems ie7 and ie8 both are displaying the content so that the container seems to be ignoring the "ma …
4
votes
7answers
161 views
check type of element in stl container - c++
how can i get the type of the elements that are held by a STL container?
4
votes
4answers
190 views
Is there an open-source alternative to Windows compound files?
I'm trying to save a couple of files to a container file. The files can be modified later which means the container might have to be enlarged. The user should only see this contain …
1
vote
2answers
29 views
[Java] Containers class owner’s child object having to add components into his parent’s container problem
Hi,
I am having problems dealing with containers and components in my JApplet.
I don't put my code because I think there is no need for it.
The main class owns the getContentPane …
0
votes
0answers
6 views
Container equivalent in code behind .net for custom templates?
i have a custome templated control like this:
<au:tagsingle runat="server" id="mysingle" ondatabinding="dome">
<MessageTemplate>
Message: <asp:Label runat= …
12
votes
13answers
1k views
To STL or !STL, that is the question…
Unquestionably, I would choose to use the STL for most C++ programming projects. The question was presented to me recently however, "Are there any cases where you wouldn't use the …
0
votes
3answers
42 views
.NET - I want to do this: Dim D as new Dictionary(of String, Array(OF MYOBJECT))
I'd like to create a Dictionary that is indexed by Strings: Dictionary(of String, ...)
I'd like the Type after the comma to be an Array of MyObject's.
If all I do is the followi …
3
votes
10answers
227 views
Which STL Container?
I need a container (not necessarily a STL container) which let me do the following easily:
Insertion and removal of elements at any position
Accessing elements by their index
Ite …
1
vote
2answers
49 views
How can I get all controls from a Form Including controls in any container?
I need for example to disable all buttons in a form or validate all textbox's data... any Ideas.. thanks in advance!!!
1
vote
1answer
147 views
How have you used IContainer/ISite/IComponent in your own code?
There are various online docs about using IContainer and ISite (eg http://www.theserverside.net/tt/blogs/showblog.tss?id=pluginArchitectures), and there are vague examples around, …
0
votes
0answers
33 views
asking the container to notify your application whenever a session is about to timeout in Java
Which method(s) can be used to ask the container to notify your application whenever a session is about to timeout?(choose all that apply)
A. HttpSessionListener.sessionDestroyed …
