closing form driving me crazy

tgbyhn10

Registered User.
Local time
Today, 23:25
Joined
Apr 6, 2007
Messages
29
Hi

I have a form with half entered data in it. I want to be able to close it down and abandon the changes but when I click on the form close box I get a message saying "you can't save this record at this time invoice system may have encountered an error while trying to save a record. If you close this object now,the data changes you made will be lost. Do you want to close the database object anyway?" YES I DO bloody thing

A little help would be really appreciated

Thanks

Pete
 
Use the BeforeUpdate event of the form to test to see if the record has all of the required fields filled out. If not, you can give a message box that asks if you want to continue with this record, or not.

If they don't want to you can use

Cancel = True
Me.Undo

to undo the changes.
 
Thanks. I think I am doing that in the code below.

In debug this routine sets cancel = true and does me.undo but I get the ""you can't save this record at this time invoice system may have encountered an error while trying to save a record. If you close this object now,the data changes you made will be lost. Do you want to close the database object anyway?" message after it exists the beforeupdate sub for some reason.


Private Sub Form_BeforeUpdate(Cancel As Integer)

Dim InValidInvoiceTotal As Boolean
Dim InValidCompanyName As Boolean
Dim InValidPurchaseNumber As Boolean
Dim InValidDeliveryNumber As Boolean
Dim InValidInvoiceNumber As Boolean
Dim sMsg As String

On Error GoTo Err_Form_BeforeUpdate

Msg = ""

InValidInvoiceTotal = False
If IsNull(Me!InvoiceTotal) Then
InValidInvoiceTotal = True
ElseIf Not IsNumeric(Me!InvoiceTotal) Then
InValidInvoiceTotal = True
ElseIf (Me!InvoiceTotal) = 0 Then
InValidInvoiceTotal = True
End If

If InValidInvoiceTotal Then
Msg = Msg & "The invoice total is zero." & vbCrLf
Me!Quantity1.SetFocus
Cancel = True
End If

InValidDeliveryNumber = False
If IsNull(Me!DeliveryNumber) Then
InValidDeliveryNumber = True
Msg = Msg & "A delivery number has not been entered." & vbCrLf
Me!DeliveryNumber.SetFocus
Cancel = True
End If

InValidInvoiceNumber = False
If IsNull(Me!InvoiceNumber) Then
InValidInvoiceNumber = True
Msg = Msg & "An invoice number has not been entered." & vbCrLf
Me!InvoiceNumber.SetFocus
Cancel = True
End If

InValidPurchaseNumber = False
If IsNull(Me!PurchaseNumber) Then
InValidPurchaseNumber = True
Msg = Msg & "A Purchase number has not been entered." & vbCrLf
Me!PurchaseNumber.SetFocus
Cancel = True
End If

InValidCompanyName = False
If IsNull(Me!CompanyName) Then
InValidCompanyName = True
ElseIf Len(Me!CompanyName) = 0 Then
InValidCompanyName = True
End If

If InValidCompanyName Then
Msg = Msg & "A customer has not been selected" & vbCrLf
Me!cboCompanyName.SetFocus
Cancel = True
End If

If Cancel = True Then
If MsgBox("Do you want to abandon the record?" & vbCrLf & vbCrLf & Msg, vbQuestion + vbYesNo, "Validation") = vbYes Then
Me.Undo
End If
End If

Form_BeforeUpdate:
Exit Sub

Err_Form_BeforeUpdate:
MsgBox Err.Description

End Sub
 
For one, your If-Then-Else statements are pretty messed up and you can't name your exit error handler the same as your error handler. Plus you can't use all of those Me.ControlName.SetFocus because it won't like it if you have multiple items that need attention.

Plus you don't need to have all of those lines setting the booleans to false as they are already false due to the DIM statement. And, get rid of the redundant If's checking if they are true; just put the message stuff in the same branch as the part that sets the boolean to true.

At the end you will notice I don't have If InvalidInvoiceNumber = True OR...

You don't need it. Using If InvalidInvoiceNumber OR ... is the same thing.

Try this:
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)

Dim InValidInvoiceTotal As Boolean
Dim InValidCompanyName As Boolean
Dim InValidPurchaseNumber As Boolean
Dim InValidDeliveryNumber As Boolean
Dim InValidInvoiceNumber As Boolean
Dim sMsg As String

On Error GoTo Err_Form_BeforeUpdate

Msg = ""


If IsNull(Me!InvoiceTotal) Or Not IsNumeric(Me!InvoiceTotal) OR (Me!InvoiceTotal) = 0 Then
   InValidInvoiceTotal = True
   Msg = Msg & "The invoice total is zero." & vbCrLf
End If

If IsNull(Me!DeliveryNumber) Then
   InValidDeliveryNumber = True
   Msg = Msg & "A delivery number has not been entered." & vbCrLf
End If


If IsNull(Me!InvoiceNumber) Then
InValidInvoiceNumber = True
Msg = Msg & "An invoice number has not been entered." & vbCrLf
End If

If IsNull(Me!PurchaseNumber) Then
    InValidPurchaseNumber = True
    Msg = Msg & "A Purchase number has not been entered." & vbCrLf
End If


If IsNull(Me!CompanyName) Ore Me.CompanyName = "" Then
   InValidCompanyName = True
   Msg = Msg & "A customer has not been selected" & vbCrLf
End If


If InvalidInvoiceTotal Or InvalidDeliveryNumber Or InvalidPurchaseNumber Or InvalidCompanyName Then
   If MsgBox("Do you want to abandon the record?" & vbCrLf & vbCrLf & Msg, vbQuestion + vbYesNo, "Validation") = vbYes Then
      Cancel = True
      Me.Undo
   Else
      Cancel = True
   End If
End If

Exit_Form_BeforeUpdate:
Exit Sub

Err_Form_BeforeUpdate:
MsgBox Err.Description
Resume Exit_Form_BeforeUpdate

End Sub
 
Thanks. The code looks a lot better now but I'm still getting the message saying "you can't save this record at this time." I get it regardless of how I respond to the "do you want to abandon the record" msgbox.

Any ideas?
 
Is this on a subform? Also, if you can post the database here, I can take a look.
 
Hi Bob

What's a subform LOL

I used to program in VB 3,4,5,6 & 7 up till about 5 years ago. I have done nothing since then till someone asked me to do an access system for them and this is it.

You want me to post the whole access database here? The code is well dodgy and the database structures are appauling mainly because of customer requests it must be said.

I can change all the confidential stuff and post it if you want.

Pete
 
If you can make a copy of it, remove any confidential data and any extraneous items like reports, tables that aren't used by the form or controls you are wanting to get working - I will try to assist.

Once you pare it down, you should compact (Tools > Database Utilities > Compact and Repair) and then zip it with WinZip, or something like it, and then if it is under 394KB you can post it here. If not, I'll have to PM you my email address for you to send it to me.
 
I'm sorry to tell you this, but your design is not normalized and as such is only going to cause you pain and suffering (for example what we're experiencing now). You should NOT have repeating fields (Item1, Item2, etc) within a table. You have a one-to-many situation and that requires at least another table, if not others.

Anyway, part of your problem is that you are trying to set a number field to text:
Code:
Me!InvoiceTotal = "£" & Format$(InvoiceTotal, "###,##0.00")
Me!InvoiceTotalIncVat = "£" & Format$((InvoiceTotal * 117.5) / 100, "###,##0.00")
Me!VatTotal = "£" & Format$((InvoiceTotal * 17.5) / 100, "###,##0.00")
You set the formats of the text boxes to DISPLAY the format, not try to set the value to be formatted and stored that way.
 
Hi Bob

Yes I know the database is awful. This was a specific requirement from the user. I tried to change his mind and had a lengthy discussion about having a separate invoice lines table but he wanted the data to be stored in the same way as his existing excel system.

I have removed all the format expressions and set everything to currency and it's being displayed fine now.

I know the table layout is awful but I am fairly sure that is not causing the problem when I close the database and the format issues has not corrected the problem either. Any more ideas I'm really stuck.

Thanks

Pete
 
Well, I am pretty sure it has to do with all of the code that runs to calculate the fields on the lost focus. You should try using the AfterUpdate event of the text boxes instead of the lost focus. By using the lost focus you are forcing zeros into the table which then leaves things that it is having trouble clearing (I believe).
 

Users who are viewing this thread

Back
Top Bottom