How do I set a breakpoint on an instance of a class?
instances of objects don't contain code. So you can not set code breakpoints on specific object instances.
However you can set data breakpoints on the object. Charade will then halt the program when the data is fetched.
To do so use the process stack & objectViewer to locate the specific instance of the object you are concerned with. Locate the field of interest in the object viewer. Then use the address of the field in the breakpoint command. For example: "br 0x12345 pc"