Hi, all!
I'm new on this list. Maybe you can help me...
I'm trying to access the "displayAddr" field of a WindowType inside a form,
but every time I do it, CodeWarrior tells me "displayAddr" was not found in
WindowType.
Specifically, I have this code:
frmP = FrmGetActiveForm();
VoidPtr p2 = frmP->window.displayAddr;
But every time I compile it, just at:
VoidPtr p2 = frmP->window.displayAddr;
the compiler tells me:
Error: undefined identifier 'displayAddr'
Does someone have an idea of what I'm doing wrong? (Of course, I've
#included
"window.h" on my project.)
- Heriberto Delgado.