Quote Originally Posted by pramarn
I'm new for use EEPROM
- please guide schematic of external EEPROM connect to PIC

and I not understan concept write data in EEPROM
First, you need to determine if it is I2C or SPI interface. If it is I2C (most likely), read the manual on I2CREAD and I2CWRITE. It has a very nice schematic and details exactly what you need to do to get it hooked up. Then you will need to setup some method of downloading the data to the EEPROM from you computer (likely through the PIC itself).

Quote Originally Posted by pramarn
I need to store picture data to Eeprom to recede my program size
My idea when i codeing program and burn to PIC picture data write in flash memory not write in EPPROM

If i use EEProm writing command write picture data from program code to EEPROM my program size is same before write picture data.
If your LCD data will fit into the remaining program flash memory, this is a good option. In this case, read the manual on READCODE, WRITECODE. Also read Darrel Taylor's example of How to store and retrieve strings in Code Space

Hope this help get you started in the right direction,
Steve