Questions tagged [members]

175 questions
0
votes
1 answer

similarity members in ONE Collection or ONE array

Hi I have a textBox that get integer from user. I want a button programming that for example if i give the textBox these numbers (5 8 16 16 5 1 0 5) with button_Click show "There is three 5 and two 16". I am using WPF(C#). Thanks for your…
mehdi
  • 1
0
votes
1 answer

mailchimp 3.0 authentication fails

Authentication fails for the following, which gets posted to mailchimp using CURL, where API_KEY is defined as a string containing my key. Similar code used to work just fine for mailchimp v2: $params = array ('apikey' => API_KEY, …
Peri Hartman
  • 19,314
  • 18
  • 55
  • 101
0
votes
1 answer

jquery plugin for tag @name project members and #lables

is there an jquery plugin that we can use for an input text to tag usernames like this: @name that it gives autocompletion of the names and also for #tag
Tupic
  • 545
  • 1
  • 6
  • 12
0
votes
1 answer

Route to get a member of a model by a value other than :id

I have Students, each of which has a standard :id but they also have a :student_number which is unique. I would like to be able to find a view a student given only their :student_number Here's the route I have now: resources :students do …
crowhill
  • 2,398
  • 3
  • 26
  • 55
0
votes
3 answers

Modify references members on class c++

I'm new in c++ and I come from Java. So I have guess about modifying class members through reference variables. In java to add an element to an existing list(class member) only have to use the "add" method, and that is all, but here I don't…
Alejandro
  • 15
  • 6
0
votes
1 answer

How to copy members between classes in intellij

I recently changed from eclipse to intellij idea, and, from time to time, I found things that are missing in the, otherwise quite good, new IDE that were present in my beloved Eclipse. One thing that I miss the most is the Overview view in Eclipse,…
lopezvit
  • 384
  • 4
  • 12
0
votes
0 answers

QT can't access members

My program starts perfectly and shows the QPlainTextEdit(console) widget that I create then when I call a method from that widget the program fails and exit main.cpp #include "cmdmw.h" #include int main(int argc, char *argv[]) { …
0
votes
2 answers

Public class requires public members (when accessing members)?

I noticed in my Java book, in the section about packages and the private modifier, that the code redundantly used private on the class and the members of the class being accessed outside of the package. package bookpack; public class Book { …
Lightfire228
  • 546
  • 1
  • 5
  • 17
0
votes
1 answer

Umbraco member select error

When I select a member it comes with this error this just happend this morning. this is confusing, maybe someone know whats happening. I got this error see link http://gyazo.com/08c4a5a86c8ca9dfe0f12336594ebb4b And Im working on umbraco 7.0.3
0
votes
2 answers

Setting a variable python class - function

Is there a function such that i can write but as a function? class foo: def __init__(self,x): self.x = x; asd = foo(2); asd.x = 5; print(asd.x); But like: class foo: def __init__(self,x): self.x = x; def…
Sanavesa
  • 13
  • 2
0
votes
3 answers

PHP Check User Script not working

I've stumbled upon a bit of a problem. My checkuser.php isn't redirecting as it should to the members area page. Basically login.html sends to checkuser.php which should then redirect to login_success.php Here's the code `
user3666207
  • 29
  • 1
  • 8
0
votes
0 answers

Class member function cannot call another member function of same class?

I'm writing a private member function for a class (function1) and for a chunk of the code I decided it'd be easier to put that chunk into it's own function (function2) , and call it from function1. However, the compiler is saying that function2…
0
votes
1 answer

Remove tabs and pages from BuddyPress profile

i want to remove several tabs from the profile of any Buddypress user. I know, that i can remove them with something like this: $bp->bp_nav['groups'] = false; This works fine and removes the tabs. The problem is that the pages are still there and…
Cray
  • 5,307
  • 11
  • 70
  • 166
0
votes
1 answer

php loggedin() gives wrong titles

I'm new to php, so I follow a tutorial from WellBro. I'm making a registration and login. But There's a mistake in my code and it always gives the wrong titels. After log in, I need to see "home, profiel and Log Out" but I keep seeing "home, log in…
user3585130
0
votes
1 answer

Buddypress - List current user's profile information

I have successfully set up a Buddypress profile page that lists the current user's name and avatar at the top of the page. The issue is that the page also lists other members' information beneath the current user. How do I change this to only list…
Lauren
  • 177
  • 1
  • 2
  • 11