keepingbusy
Programmer
Hi all
Can anyone suggest why this is happening?
I currently use the following to append a previous record from a table:
Needles to say, all the previous details, name, address, etc are copied from the existing record into the new one and I am simply tryng to clear the memo field so the user can add thier own informaiton on a form.
Here's the problem....
When the form is displayed, the original information from the previous record appended is shown no problem. I tried a test by placing:
in the INIT of the form and the MEMO field is blank.
When you click on the pageframe tab (The MEMO field is shown in an edit box on a pageframe) the original information from the previous record is shown.
I have checked to make sure that the new record is showing on the form (it has two other fields called SECNUM (Consective Number) and SECYER (Record Year)) which confirms it is a new record.
Before I pull out what hair I have left, any suggestions guys?
By the way, I am using VFP 6 for this project.
Many thanks
Lee
Visual FoxPro Versions: 6 & 9
Operating System: Windows XP
Can anyone suggest why this is happening?
I currently use the following to append a previous record from a table:
Code:
USE MYTABLE SHARED
APPEND FROM MYTABLE FOR URN=murn
REPLACE MEMONAME WITH ""
Here's the problem....
When the form is displayed, the original information from the previous record appended is shown no problem. I tried a test by placing:
Code:
BROWSE FIELDS MEMONAME
When you click on the pageframe tab (The MEMO field is shown in an edit box on a pageframe) the original information from the previous record is shown.
I have checked to make sure that the new record is showing on the form (it has two other fields called SECNUM (Consective Number) and SECYER (Record Year)) which confirms it is a new record.
Before I pull out what hair I have left, any suggestions guys?
By the way, I am using VFP 6 for this project.
Many thanks
Lee
Visual FoxPro Versions: 6 & 9
Operating System: Windows XP