Questions tagged [members]
175 questions
-1
votes
2 answers
Python cipher program - Too many members
I'm currently trying to make a cipher program, here is my code;
import string
import random
matrix = []
codedmessage = []
letter = "ABCDEF"
message = input("Enter message to be encoded:\n").upper().replace(' ', '')
print ('---MESSAGE---\n',…

CBreeze
- 2,925
- 4
- 38
- 93
-1
votes
1 answer
how to access a members of an abstract super class from nested members of another child class
my problem is to access a members of an abstract super class from nested members (class or struct) of another derived class
for example:
public abstract class DataAccessLayer {
public DataAccessLayer(string _connectionString) { //some…

أحمد صبرى
- 1
- 1
-2
votes
1 answer
C++ class method return pointer to a user defined class instance
I'm trying to implement a class that has pointers for class members and methods that return pointers but on compile I get "syntax error : missing ';' before '*'" and "missing type specifier - int assumed. Note: C++ does not support default-int"…
-2
votes
1 answer
I want to find out how many new members I have using MySQL for the registration year 2017
My columns are Year and AthleteID. Every time someone registers they keep the same AthleteID, so A query that returns all members from all years would look like the below:
|AthleteID | Year|
| 1234 | 2016|
| 1234 | 2017|
| 3243 | 2016|
|…

sjw0525
- 329
- 2
- 17
-2
votes
1 answer
How to make a basic member system for a website
I want to make it so that people can log into an account that they've made using a signup form and I also want to make it so that when the account is created they it makes a profile page where they can edit their profile picture, banner, and…

Goose
- 1
-3
votes
1 answer
display a section for logged in users
Basically i've been looking for a code to put into the index page. Where let's say your new, and you see a text that says
welcome visitor and then you login, and
once you are it should say Hello .'user'.
I've looked around, but no one seems…

Marichuy
- 27
- 1
- 2
- 10
-3
votes
1 answer
how to invite my friends to my group using facebook api 2.1
For inviting friends to a group I use below code
Dim fb = New FacebookClient (TockenAccess)
Dim parameters As Object = New ExpandoObject ()
parameters.member = "1000048247037551"
Await fb.PostTaskAsync ("/ 1387586938758287 / members"…

Anziz
- 1
- 4
-3
votes
2 answers
c++ object member destructor is called and member exist with default values
I have a B class and it has a class C member. B objects are stored in a vector. Full Code and output as follows:
#ifndef B_H
#define B_H
#include "C.h"
class B
{
public:
B( int = 0 ); // constructor
B( const B& ); // copy…

Kun
- 1
- 2
-4
votes
1 answer
Hundreds of "has no member named..." Errors C++
I've just started C++ programming so excuse me if this is a horrid noob mistake, but it's doing my head in.
I have multiple .cpp files correctly programmed and no errors after compiling them, all with their own .h files.
For some reason, when I try…

Burgtaro
- 33
- 1
- 8
-5
votes
2 answers
How to display list Active Directory users that arent in specific AD Groups
I have a requirment to create a report/text file that displays the users that arent in specific AD groups. I know displaying users that are in specific AD groups is easy enough with Powershell.
Surely its possible to display the users that ARENT in…

John
- 1