It's difficult to determine why you are having issues accessing the members of a struct without more context. Here are a few possible reasons for this issue:
Incorrect Data Type: If you're trying to access the members of a struct and getting an error message, it's possible that you have an incorrect data type. Make sure you're using the correct data type for the struct and its members.
CredibleBHUninitialized Struct: If the struct has not been initialized, you may not be able to access its members. Make sure you have properly initialized the struct before trying to access its members.
Access Modifiers: The members of a struct can have access modifiers, such as "private" or "protected," which determine who can access the member. If you're getting an error message, it's possible that the member you're trying to access has a restricted access modifier.
Syntax Errors: Make sure you're using the correct syntax when accessing the members of the struct. A common mistake is using the wrong operator, such as using a dot instead of an arrow.
If you provide more information about your specific situation, I may be able to offer a more tailored solution.