C
Cass
On my form I have the following code:
Function Item_Write()
If Item.UserProperties.Find("Utility") <> "" Then
If Item.UserProperties.Find("CityState") <> "" Then
Item.FileAs = Item.UserProperties.Find("Utility") & vbcrlf & _
Item.UserProperties.Find("CityState")
Else
Item.FileAs=Item.UserProperties.Find("Utility")
End If
Else
Item.FileAS=Item.UserProperties.Find("CityState")
End If
End Function
When I try to use the default Contacts button on the custom form it
gives me this "The item must be saved. Would you lilke to save it
now?"
Also, the form is being named "()" in the title bar.
Anybody know why it is doing this?
Function Item_Write()
If Item.UserProperties.Find("Utility") <> "" Then
If Item.UserProperties.Find("CityState") <> "" Then
Item.FileAs = Item.UserProperties.Find("Utility") & vbcrlf & _
Item.UserProperties.Find("CityState")
Else
Item.FileAs=Item.UserProperties.Find("Utility")
End If
Else
Item.FileAS=Item.UserProperties.Find("CityState")
End If
End Function
When I try to use the default Contacts button on the custom form it
gives me this "The item must be saved. Would you lilke to save it
now?"
Also, the form is being named "()" in the title bar.
Anybody know why it is doing this?