Click here to Skip to main content
15,880,405 members

Comments by PJ Arends (Top 41 by date)

PJ Arends 26-Feb-23 14:17pm View    
cls.two has not been initialized so it is pointing to just some random memory.
PJ Arends 28-Jan-22 15:23pm View    
What I have done in the past is simply enumerate all child controls and do a check sum of the data they contain. Grab and save a checksum at the start. If any controls are added or removed, or any data is changed then the checksum will be different. If the user undoes any changes then the checksum will not have changed.
PJ Arends 14-Mar-18 19:31pm View    
And also the bitwise AND operator.
PJ Arends 13-Sep-16 22:28pm View    
Thanks for your answer. I guess I will just end up writing a c++ script that will go through all the .htm files and update the version information in each one individually.
PJ Arends 14-May-16 15:18pm View    
Do not use void* if you can at all avoid it. You loose all type safety if you use it.

The cast you are trying to do is better done with reinterpret_cast.