Questions tagged [members]

175 questions
0
votes
1 answer

Wordpress Buddypress always show members list of group

I'm working on a Wordpress/Buddypress project and I would like to make the members list of group always visible whether or not the group is private and the logged member belong to the group. I was thinking I had to change access and visibility of…
0
votes
1 answer

python get members of COM ole object

In python 3.6 I'm using an COM interface to communicate with Excel and Word, in this case Word for automated reporting as the data processing is done in python. I don't know how python can get the members of such a COM object similar to the use of…
Lendicap
  • 21
  • 3
0
votes
1 answer

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 created, an event handler also inserts this…
0
votes
1 answer

Umbraco Backend Member information

I have created members in umbraco, which can login (frontend), to a user area. I have also under members in umbraco, created fields, with information like profile picture, address, phone etc. which i can set in the backend of umbraco. But i would…
andrelange91
  • 1,018
  • 3
  • 21
  • 48
0
votes
0 answers

Where to set the class members in Python?

Where is it better to declare the class members in Python if I'm not going to initialize them through parameters? In __init__ or just under the Class declaration? Ex: class A(): def __init__(self): self.__variable = 0 class B(): …
Wrong
  • 1,195
  • 2
  • 14
  • 38
0
votes
2 answers

C++, unmanaged, class, members: How (if at all) can I list all the members in a class?

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 view there is one data member in class. Currently in…
Ajeet Ganga
  • 8,353
  • 10
  • 56
  • 79
0
votes
2 answers

How to restrict objects private data member modification in C++?

please check the below code, i need a solution to restrict the modification of private data members of class A. please suggest. class A{ private: int a; int b; public: A(int i=0, int j=0):a(i),b(j){ cout<<"A's constructor…
d3v-sci
  • 173
  • 12
0
votes
1 answer

Error with Node of Tree Class, perhaps because of private Node members

So I've been testing a tree node class and have encountered some errors. I think it's because I'm using private Node members and using accessor functions to access them. Using the del function, I attempted to print and delete the test tree while…
dfries
  • 1
  • 1
0
votes
5 answers

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 that using an event handler grabs a frame (bitmap)…
TomP89
  • 1,420
  • 3
  • 11
  • 29
0
votes
1 answer

Get more than 50 members of a group from Soundcloud

I'm trying to get all the members of a SoundCloud group using the Python API. So far I can get the first 50 but providing the mentioned "linked_partitioning=1" argument doesn't seem to be move on to the next set of members. My code is: # Login and…
Jay
  • 3,373
  • 6
  • 38
  • 55
0
votes
1 answer

different locations for different members groups from sign in page

**This code enables a successfully logged in user to be directed to the student_profile.php page however i need this to check the type of user that is trying to log in and according to that send that member to the appropriate location. In the DB i…
Aman.V
  • 23
  • 5
0
votes
1 answer

Umbraco 7 - Query Umbraco Members - Performance

I made this function to fetch all the members with their custom properties. I was just wondering whether this is written performant or not. Are there any - performance wise - cleaner solutions? Or is it okay to work with? public…
user2963570
  • 381
  • 6
  • 21
0
votes
2 answers

Not able to resolve identify member class attribute in android studio

package com.example.android.sunshine; import android.content.Intent; import android.content.SharedPreferences; import android.net.Uri; import android.os.Bundle; import android.support.v4.app.Fragment; import…
Akash Garg
  • 51
  • 10
0
votes
3 answers

C++ static members

I have the following code: void Foo() { static std::vector(3); // Vector object is constructed every function call // The destructor of the static vector is invoked at // this point (the debugger shows so) //…
Yippie-Ki-Yay
  • 22,026
  • 26
  • 90
  • 148
0
votes
1 answer

Initializing static class member which is another class object

I am newbie to this forum and my question is probably newbie-like too. To be specific: I am working on a simple 2D game in SFML library, lang: C++. There would be an object which presents a brick. This is probably irrelevant. I would like my bricks…
xanax
  • 1