Hi guys,
I was just wondering if someone could help me on that:
I got a form which have a subform on it, and when I click on a command, it take the info on my subform and copy it in another program, problem is sometime, even if I have 1 or more line in my subform, it give me the no entry msgbox with the following code.
I'm trying to find how I could correct this so it will not give me the "no entrie" when there IS entries
Thank you.
I was just wondering if someone could help me on that:
I got a form which have a subform on it, and when I click on a command, it take the info on my subform and copy it in another program, problem is sometime, even if I have 1 or more line in my subform, it give me the no entry msgbox with the following code.
Code:
Set rs = Me.ItemCustWant1_subform.Form.RecordsetClone
If rs.BOF And rs.EOF Then
MsgBox ("no entries")
Exit Sub
End If
I'm trying to find how I could correct this so it will not give me the "no entrie" when there IS entries
Thank you.