I have ran into another very similar problem and have tried to remedy it in the same manner without luck. Before I could not access the totalPreferred in genreStruct but now don't know how to access the values of the genreSongList, which is a songStruct type, within the genreStructPointer. I am not sure if I truly need to use a pointer because of the multi-bank because genreStructPointer is already doing this for me? I apologize if this seems vague I had some real moron barking in my ear while writing this and had to get out of the room!!! Below is my code. struct songStruct { unsigned char *flashCardLocation, hasPlayed; unsigned int songLength; char *title, *album, *genre; }; struct genreStruct { unsigned char totalPreferred; struct songStruct genreSongList[MAX_NUMBER_OF_SONGS_PER_GENRE_AND_INTENSITY]; }; //Large memory addressing-------------------------------------------------------------------------------- #pragma udata myGenreSection=0x129 struct genreStruct genreTable[GENRE_TABLE_SIZE_X][GENRE_TABLE_SIZE_Y]; #pragma code struct genreStruct (*genreTablePointer)[GENRE_TABLE_SIZE_X][GENRE_TABLE_SIZE_Y] = genreTable; #pragma udata myUserSection=0x60 struct user usersTable[MAX_NUMBER_OF_USERS]; #pragma code //I want to be able to something like this------------------------------------------------- genreTablePointer[4][0]->genreSongList[0].songLength = 0x4260; On Mon, 28 Mar 2005 14:22:35 -0500, Senior Design wrote: > Yes, this works but it only show what is in the immediate memory > space. Ex: only the first of the 8 cells in the array...? > > > On Fri, 25 Mar 2005 08:49:46 -0800 (PST), piclist@xargs.com > wrote: > > On Fri, 25 Mar 2005, Senior Design wrote: > > > > > However, with this being the first time I have > > > used the multiple bank variable pointer, I have found that you can't > > > just hover over the pointer to get its value. > > > > Have you tried putting "*pointer" in the watch window? > > > > -- > > John W. Temples, III > > -- > > http://www.piclist.com PIC/SX FAQ & list archive > > View/change your membership options at > > http://mailman.mit.edu/mailman/listinfo/piclist > > > -- http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist