help me
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
how can i get the address of a Clist Control and translate to another Class & using it
a beginner
So you have CList in a func, or in a header? Just use the & operator to get the address, then cast that adress to another class. You can store the address in any pointer or 4byte variable (on a 32 bit PC). DWORD myaddress = (DWORD)&myListCtl; ((CWind*)myListCtl)->someCWindFunc();
Truth is the subjection of reality to an individuals perception