1
vote
2answers
50 views
In JScript, is it possible to implement getters and setters that look like object properties from the outside?
While trying to port and generally playing around with some non-browser code, I came across getters and setters that looked like normal object properties. Something like this:
js& …
1
vote
1answer
28 views
Visual C++ Express, the debugger, sorted associative containers and memory deallocation
So you have this simple program that creates a set from a file :
#include <fstream>
#include <string>
#include <set>
int main()
{
std::set<std::string> S …
0
votes
1answer
10 views
Google Translate set default language
Maybe this has an obvious solution that I'm overlooking, but I can't seem to find the correct parameter to put in to make this happen.
Using the Google Translate widget on a site, …
0
votes
1answer
24 views
How to set output path in a Qt project
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
7
votes
5answers
2k views
How do you sort a tree stored using the nested set model?
When I refer to nested set model I mean what is described here.
I need to build a new system for storing "categories" (I can't think of better word for it) in a user defined hiera …
3
votes
4answers
43 views
Creating a surface of triangles from a set of 2D points…
Hi,
I have a set of points and I need to convert the set to (non-overlapping) triangles (or a big polygon if equivalent)...
The application: I have a list of locations (latitude, …
1
vote
2answers
39 views
C# AppSettings: Is there a easy way to put a collection into <appSetting>
i tried
<appSettings >
<add key="List" value="1"/>
<add key="List" value="2"/>
<add key="List" value="3"/>
</appSettings >
and Sys …
0
votes
5answers
65 views
Javascript - if statement not working?
I'm trying to set a class to active depending on the url. I'm trying to use the code below, but in every case, it activates the active class for the second tab.
var pathname = …
0
votes
3answers
17 views
Check if a combination matches a given set
Basically I'm looking for a solution which returns if a given combination matches a given set.
Example: I have an array which stores which computer room and which workplace has wh …
0
votes
3answers
6k views
How to set background image in Java?
I am developing a simple platform game using Java using BlueJ as the IDE. Right now I have player/enemy sprites, platforms and other items in the game drawn using polygons and simp …
0
votes
3answers
93 views
Getting Union, Intersection, or Difference of Sets in C++
I have a couple questions about how to use C++ sets (std::set)
Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own fun …
1
vote
1answer
13 views
How can I concatenate set of results in MySQL?
I would like to join results returned in the set in MySQL with a comma as a separator string.
For example, set returned contains:
COLUMN_X
john
jerry
maria
joseph
gugla
I would …
0
votes
5answers
143 views
What is the best way to auto generate getters and setters for a class in php?
I regularly create a class that has a few private variables.
When an instance of this class is set, it should be possible to fill all variables of the class with getters and setter …
1
vote
2answers
72 views
PersistentSet in ZODB 3
ZODB provides a PersistentList and a PersistentMapping, but I'd like a PersistentSet. I wrote a quick class that mirrors the ancient PersistentList from ZODB 2. Because there's n …
1
vote
1answer
33 views
In Power Point VBA, how to nudge all the present shapes in the window (not only one)?
As far as I understand, this code "grabs" only the first shape in the active window and nudges it:
Set oShape = oSlide.Shapes(1)
oShape.Left = oShape.Left + 5
How can I …
