Repeated punctuation does not make you more clear.
The problem is in Status == "member", assuming that Status is a char* rather than std::string. The * means a pointer. To compare pointers is to compare the addresses of memory locations they point to, not the data. One solution would be to make it an std::string. Another would be to write if(strcmp(Status, "member")==0) (You'll have to include <cstring>).
Ok, so hamsterman is right: You must use strcmp() to compare strings. That function is case-sensitive. Use stricmp() for case-insensitive comparison, although I heard once that this one is not standard so your compiler might not provide it.
I also hope that when you say "non-pointer variable" you mean it is an array of char. Otherwise you cannot compare an entire string against a single character.
You are declaring Status as a c-string rather a string so, you cannot make comparison like this. String type is a class in which the relational operator "==" is overloaded and you can compare objects(of string class) using this operator. However, in a c-string this functionality is not available. So, in order to make a comparison you have to use the strcmp() function. The correct syntax(in this case) will be if(strcmp(Status, "member")==0)