-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

"Ai Lee Tang" <[EMAIL PROTECTED]> writes:

| I got an error msg when i tapped on a table, the msg as below:
| 
|     "Product(1.0) just wrote to memory location 0x0000295C,
|      which is in the 'attr' field of the frmtableobj starting
|      at 0x00002930, which belongs to the form starting at
|      0x00002840."
| 
| It happened when i run on emulator with OS3.5 but it running well on
| handheld and emulator with OS3.0.

Probably you do somthing like:

FormPtr frm;
FieldPtr fld;

frm = FrmGetActiveForm ();
fld = FrmGetObjectPtr (frm, FrmGetObjectIndex (frm, MyForm));

if (!fld->attr.insPVisible)
  {
     ....
  }

If so, change it to:

...
FieldAttrType attr;

...
FldGetAttributes (fld, &attr)
if (!attr.insPVisible)
  {
     ....
  }

Regards,

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (OpenBSD)
Comment: no comments

iD8DBQE7fNeHUHt8kCIJ1VoRAnxoAJ41fjeP6Sn6+Qm/zONP88vmPfJJTACePyJA
8haWt5itHNgH/FoPa34zRCw=
=t6Rb
-----END PGP SIGNATURE-----

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to