K
Koulla
Hi,
I have a list box in a form which contains 4 entries.
When I close the form my last action is saved to the
first entry. I try to close the form without saving it
but also the same problem exist.
To not save the information while i close the form i use
the following code:
DoCmd.Close acForm, "BY ConName_ProjName_ProjAdm FORM",
acSaveNo
When i do not close the form the information is right.
When i close it is not. And when i open the form i saw
the changes.
Is there any other way to do that???
The close button has the following code :
Private Sub Command58_Click()
On Error GoTo Err_Command58_Click
DoCmd.Close acForm, "BY ConName_ProjName_ProjAdm FORM",
acSaveNo
Exit_Command58_Click:
Exit Sub
Err_Command58_Click:
MsgBox Err.Description
Resume Exit_Command58_Click
End Sub
I have a list box in a form which contains 4 entries.
When I close the form my last action is saved to the
first entry. I try to close the form without saving it
but also the same problem exist.
To not save the information while i close the form i use
the following code:
DoCmd.Close acForm, "BY ConName_ProjName_ProjAdm FORM",
acSaveNo
When i do not close the form the information is right.
When i close it is not. And when i open the form i saw
the changes.
Is there any other way to do that???
The close button has the following code :
Private Sub Command58_Click()
On Error GoTo Err_Command58_Click
DoCmd.Close acForm, "BY ConName_ProjName_ProjAdm FORM",
acSaveNo
Exit_Command58_Click:
Exit Sub
Err_Command58_Click:
MsgBox Err.Description
Resume Exit_Command58_Click
End Sub