PRB: "Record is out of Range" w/ Form from One-to-Many WizardLast reviewed: September 22, 1995Article ID: Q135751 |
The information in this article applies to:
SYMPTOMSWhen using a form created with the One-to-Many Wizard, you may receive the error "Record out of Range." This error occurs if a new record is added to both the parent and child tables.
CAUSEThe error occurs because the record pointer in the child table does appear to be in the correct location when the command THISFORM.REFRESH is executed.
RESOLUTIONRefresh the form before adding the record in the second table by adding this line of code:
THISFORM.REFRESH Code SampleThe following code from the Wizstyle.vcx is called by the form. This code is located in the txtbtns class under the addcmd.click event.
* Add record to parent table IF INLIST(oAddRec.AddOption,OPT_ADD_PARENT,OPT_ADD_BOTH) IF EMPTY(m.cPapaKey) APPEND BLANK IN (m.cPapaAlias) ELSE INSERT INTO (m.cPapaAlias) ((oAddRec.KeyField)) ; VALUES(oAddRec.KeyValue) ENDIF ENDIF THISFORM.REFRESH && < ---- Add this line to fix the problem * Add child record IF INLIST(oAddRec.AddOption,OPT_ADD_CHILD,OPT_ADD_BOTH) * Need to check IF EMPTY(m.cChildKey) OR TYPE(m.cChildKey)#TYPE('oAddRec.KeyValue') APPEND BLANK IN (m.cChildAlias) ELSE INSERT INTO (m.cChildAlias) ((m.cChildKey)) ; VALUES(oAddRec.KeyValue) ENDIF ENDIF STATUSMicrosoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONThe error message may also be received when using a form not created by the Form Wizard but the workaround is the same.
Steps to Reproduce Behavior
|
Additional reference words: 3.00 VFoxWin one to many one-to-many
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |