As a general rule, the more context provided in a question, the more likely it will be that a usable response can be provided.Hi,
I have a split form with few combo boxes. I want to get message if search find no records. How that should be done.
Interesting. When I type something that is not in the list, I get the following message. Are you saying you don't get something like this? If so, make sure you set the Limit To List property of the combo to Yes.i got no message i want to add one when nothing found.
your suggestion is ok it works when set limit to list properties to yes but i want customised message box.Interesting. When I type something that is not in the list, I get the following message. Are you saying you don't get something like this? If so, make sure you set the Limit To List property of the combo to Yes.
View attachment 119218
If Me.Recordcount = 0 Then
msgbox "No records found!"
End If
Looks like you can use the Form Error event to trap that message and display your own.your suggestion is ok it works when set limit to list properties to yes but i want customised message box.
I tried few different ways none worked. last attempt was with this code:Looks like you can use the Form Error event to trap that message and display your own.
View attachment 119222
View attachment 119223
View attachment 119224
I have few combo boxes so there are text, numbers, dates. in the example i tried with first combo which is number.If it is text, you need to surround it with single quotes, or triple double quotes if that could contain a single quote.
So why Str() ?I have few combo boxes so there are text, numbers, dates. in the example i tried with first combo which is number.
It shouldnt? works perfectly with no mistake.So why Str() ?
Good advise problem is that i am beginner haven't learn about vba yet so i still trying to guess right way. and about fields i think no need to check. As i said i have few combo boxes. each combo is for number or text or date only. one for numbers other for text etc.@quest,
As you are doing a search, I'd suggest making sure you have values BEFORE you start building your criteria for the DoCmd.SearchForRecord. Don't issue the search until AFTER you know you have a value for Screen.ActiveControl.
You can check if it IsNull or a ZLS first. You can also check if it is numeric as you are doing a search for [Number]. Goal is to have "No Records Found" make sense based off of what the user has input, rather than "I forgot to tell it WHO I am working with, but it still let me do it".