Tagged Questions
The members tag has no wiki summary.
12
votes
4answers
10k views
Unresolved external symbol on static class members
Very simply put:
I have a class that consists mostly out of static public members, so I can group similar functions together that still have to be called from other classes/functions.
Anyway, I have ...
6
votes
3answers
246 views
Non static const data members
How do I define a non-static const data member of a class in C++? If I try compiling the following code:
class a
{
public:
void print()
{
cout<<y<<endl;
}
private:
...
4
votes
2answers
171 views
Can F# type members reference each other?
I was wondering if there is a way to let type members reference each other. I would like to write the following program like this:
type IDieRoller =
abstract RollDn : int -> int
abstract ...
3
votes
1answer
80 views
details list like in explorer.exe
I am having a problem finding a Delphi component to list items with some information as well just like the Windows file explorer does.
Is there a component that I could use to make a list of names ...
3
votes
4answers
120 views
php based membership framework
I have seen a few things that look like part of what I want, but I don't feel like I have found the right thing. I am looking for a php based membership library/framework. It should do the following:
...
2
votes
6answers
70 views
Python Add Elements of a List (or Set, or whatever Data Type is appropriate)
Is there an easy way to add the members of two equally sized lists (or tuple or whatever data type would work best)?
I have, for example a and b with 2 elements:
a = (0, 10)
b = (0, -10)
I want to ...
2
votes
2answers
59 views
Handling Specified Member Classes In C#
In building a class structure, I would like to have derived classes potentially posses derived member classes. For example:
class GamePiece
{
}
class Checker : GamePiece
{}
class ChessMan : ...
2
votes
3answers
80 views
How far should I go to avoid internal getters/setters within a class
I have more of a "how much is too much" question. I have a Java class that defines several getters/setters for use by external classes (about 30 altogether). However, the Java class itself requires ...
2
votes
3answers
592 views
Javascript new object (function ) vs inline invocation
Is there any considerations to determine which is better practice for creating an object with private members?
var object = new function () {
var private = "private variable";
return {
...
2
votes
5answers
236 views
C++ static members in class
Is it possible to access to access and use static members within a class without first creating a instance of that class? Ie treat the the class as some sort of dumping ground for globals
James
1
vote
2answers
70 views
how can i get linkedin group members
I have been trying to get all the members of my linkedin groups. I have gone through their API's but linkedin don't support this.
I have tried many other ways of doing so through curl , different php ...
1
vote
2answers
121 views
java static member memory leak
I am reviewing one java code base for finding some memory leaks. During the review I have find the following scenarios.
A class Class1 has in the codebase. Class1 have some instance variables and ...
1
vote
2answers
124 views
Is there any difference regarding performance of private, protected, public and internal methods in C# classes?
Is there any difference regarding performance of private, protected, public and internal methods in C# class? I'm interested if one consumes more processor time or RAM.
1
vote
2answers
133 views
To use getAttribute(), or not to use getAttribute(): that is the question [closed]
Possible Duplicate:
JavaScript setAttribute vs .attribute=
javascript dom, how to handle "special properties" as versus attributes?
Many times, in forums or places such as ...
1
vote
0answers
128 views
Pros/cons of different ways accessing C struct members [closed]
Structs interface and Hiding members in a C struct discusses various ways in accessing /modifying members.
What would be pros/cons of using:
Opaque handle to struct and setters/getters
Accessing ...
1
vote
1answer
53 views
MDX for calculating measure given equality of 2 member attributes from 2 different dimensions
I have the following structure of measures and dimensions, and some example data
Fact Table:
id_dim1 id_dim2 id_dim ...measure1
1 2 ...120
2 1 ...101
1 1 ...95
3 3 ...12
Dim1:
id_dim1 ...
1
vote
1answer
11 views
How do I use the attributes tag in Mansion Productions' Member's Area System?
Mansion Productions' Member's Area System is a content management system for adult websites. To those who are familiar, I am trying to use the [attribute] tag to display information about a content ...
1
vote
0answers
47 views
VC2010 Change Auto List Members
Anyone know how to change the Auto List Member highlight from yellow to whatever? I'm currently using the VC2010 C++ edition. Its difficult to see the highlight vs my other font colors. Thanks :D
1
vote
2answers
212 views
How to dynamically add members to class
My question can be simply illustrated by this code:
def proceed(self, *args):
myname = ???
func = getattr(otherobj, myname)
result = func(*args)
# result = ... process result ..
return ...
1
vote
7answers
132 views
C++ class members
I came from Java to C++ ...
When I try to do this ...
class Box {
Table* onTable;
};
class Table {
Box* boxOnIt;
};
int main() {
Table table;
Box box;
table.boxOnIt = ...
1
vote
1answer
343 views
MDX - Concatenate level's properties and level's members
I an using mondrian and I have this issue: using a query mdx I need to concatenate in each member name belonging to a certain level, its name and a the value of a certain level properties for that ...
1
vote
1answer
52 views
User permissions in WMI
Does anyone know which WMI Class is to be used to getting information of which users or user groups have permission for a given folder?
1
vote
4answers
108 views
Disallow fields in descended class C++
With a friend, we had following problem recently. There was a base class:
class A {
public:
A() : foo(10) {}
virtual int getFoo() const { return foo; }
protected:
int foo;
};
A friend ...
1
vote
2answers
197 views
Template object as static member of the template class
Imagine the following template class (setter and getter for the member _t omitted):
template<class T>
class chain
{
public:
static chain<T> NONE;
chain()
: _next(&NONE)
{}
...
1
vote
1answer
87 views
How to access the members of this data in PHP?
Okay. Now I give up. I have been playing with this for hours.
I have a variable name $data.
The variable contains these contents: (extracted by using var_export())
array (
'headers' =>
array ...
1
vote
3answers
187 views
Identical Class Member Names and Function Argument Names in C++
I have a simple object that holds some [public] data.
I want to keep my interface clean, so I don't want to pre-/post- fix anything to the names of the publically accessible variables nor to the ...
1
vote
4answers
107 views
Access identically named class members of instances of different classes
I have instances of class A and B, and both classes implement a member 'Text'. Is there a way to access member Text in a generic way?
I'm hoping for something analogous to the javascript way of simply ...
1
vote
4answers
520 views
How did you handle your team members during times of recession, when you had to let go of some people?
i was asked the above question during one of my interviews.
Although i answered that i will talk with each of the employees individually and try to make comfortable in the current position but still ...
1
vote
5answers
590 views
Should lookup tables be static
I have a Message class which parses text messages using lookup tables. I receive a lot of messages and create and destroy a lot of objects so I thought I declare those lookup tables as static members ...
1
vote
9answers
401 views
Is it better to store class constants in data members or in methods?
I recently wrote a class that renders B-spline curves. These curves are defined by a number of control points. Originally, I had intended to use eight control points, so I added a constant to the ...
0
votes
2answers
31 views
Javascript Mutable Parameter?
This is just a technical question about javascript. In javascript, one member of my group found something odd with javascript object creation. For some reason, the parameters in the object are ...
0
votes
3answers
37 views
Trying to pass a pointer as a parameter to a member of fstream that points to a file
/* Thanks to anyone looking at this who might attempt to answer it. I'm really not trying to waste anyone's time here, but I have beat my head on this for about three days. I realize it is probably ...
0
votes
2answers
54 views
Graph API | Get facebook page members/likes
I've got a question about the facebook graph api.
I have a example facebook page: https://www.facebook.com/pages/TheBestCompany/250721784993387
And i want to get the images from all the people that ...
0
votes
4answers
60 views
Expression Engine Member Import XML Custom Fields
I have an Excel document containing the details of 2000 users that need to be imported as Members in Expression Engine - using the Member Import utility.
Where on earth do I start?
First Problem
- ...
0
votes
0answers
52 views
Wordpress: create an upload form with max number of submissions per member
I need to create an upload form accessible only to all registered wp users (I will use a plugin for managing access content) with the feature to limit the uploads per day for each single member.
For ...
0
votes
0answers
22 views
User staying logged in error on pages that require a user to be logged in
I am building a website where people sign up and add their own content, such as reviews, and pages like new_review.php and new_video.php and edit_profile.php require users to be logged in. I have a ...
0
votes
1answer
52 views
php session not registering when opening page from a word document
I'm stumped on this one. I have a members only page which when a user is not logged in will force the user to log in (redirect to login page). The target url ($_SERVER['REQUEST_URI']) is stored in a ...
0
votes
0answers
149 views
JQuery members only login pop up in Wordpress
I haven't been able to find any info on this anywhere over Google but I know it's possible:
I have one page on my Wordpress site that I want to be locked until visitors log in. I would like them to ...
0
votes
2answers
76 views
Accessing public members of base class fails
might be a bit of a coward-ish question: I've got two classes, and declared all variables public. Why can't I access the variables from derived class??
g++ tells me: vec3d.h:76:3: error: ‘val’ was ...
0
votes
3answers
54 views
What's is better for a members database?
Hi and thanx for reading my post i am having a little trouble learning my database in mysql.
Now i have it set up already but recently, but i had another person tell me my members table is slow and ...
0
votes
0answers
30 views
Facebook API: Can I download all new members that joined my college network?
I would like to email all incoming freshman at my college to advertise my new iPhone app for new student orientation. Is there a way I could get a list of all of there names through Facebook API?
0
votes
2answers
1k views
VBScript to export all members of multiple Active Directory groups?
Is there a way of exporting all the members of multiple Active Directory groups at once using a VBScript? Preferably the output would be the usernames listed under the group they are a member of.
I ...
0
votes
1answer
58 views
Middleware (e.g. CORBA) - Inheritence of Object Members. Is it possible?
Consider the very simple IDL code that specifies a base and derived interface in CORBA:
module test{
interface Quote{
attribute string symbol;
};
interface ...
0
votes
1answer
54 views
Mdx Query Problem
Hi
I m working on mdx query ,and i thought i solved a problem but....
I ve created a calculated member
iif(
isleaf([DimensionArtikujDG].[DimensionArtikujDG].CurrentMember),
...
0
votes
1answer
74 views
Calling member function of an object inside a vector
This is a continuation on my previous question here regarding retrieving and editing private members of objects in a vector.
I have a vector full of objects that have private members that I need to ...
0
votes
1answer
255 views
sfGuardAuth across multiple apps
I've got 3 apps: Backend, Frontend and Members.
And I've got 2 credentials: Administrators and Members.
Administrators are imported by default but Members are created in the Backend.
When a Member is ...
0
votes
2answers
157 views
C++, unmanaged, class, members: How (if at all) can I list all the members in a class? [closed]
Possible Duplicate:
Iterate through struct variables.
So I have a header file and a code file. The class is representation of a View that will be queried from stored proc. For each col. in ...
0
votes
5answers
283 views
C# accessing form member from separate class
I need some advice please on the best way to achieve a particular outcome...
My scenario...
I have a Form1 class, which is my main Form with a picture box on it.
I have a second class called camera ...
0
votes
3answers
157 views
C++ static members
I have the following code:
void Foo() {
static std::vector<int>(3);
// Vector object is constructed every function call
// The destructor of the static vector is invoked at
// ...
0
votes
3answers
672 views
C# hiding with members
in the below example, what would happen?
class Base {
public int abc = 3;
}
Class Derived : Base {
public int abc = 2;
}
static void Main() {
Derived blah = new Derived();
...