Recent content by quest

  1. Q

    Solved Message no record found

    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.
  2. Q

    Solved Message no record found

    It shouldnt? works perfectly with no mistake.
  3. Q

    Solved Message no record found

    I have few combo boxes so there are text, numbers, dates. in the example i tried with first combo which is number.
  4. Q

    Solved Message no record found

    I tried few different ways none worked. last attempt was with this code: Private Sub Combo13_AfterUpdate() On Error GoTo Combo13_AfterUpdate_Err DoCmd.SearchForRecord , "", acFirst, "[Number] = " & Str(Nz(Screen.ActiveControl, 0)) DoCmd.Requery "" Combo13_AfterUpdate_Exit: Exit...
  5. Q

    Solved Message no record found

    your suggestion is ok it works when set limit to list properties to yes but i want customised message box.
  6. Q

    Solved Message no record found

    here how it is look like when nothing found only this example is with text boxes instead of combo boxes.
  7. Q

    Solved Message no record found

    If nothing found i have only one new record.
  8. Q

    Solved Message no record found

    i got no message i want to add one when nothing found.
  9. Q

    Solved Message no record found

    I suppose it should be some iif statement in the after update of the combo box?
  10. Q

    Solved Message no record found

    choose from combo box or write to it. I must say everything work just fine just want some message to appear to look better and show what is going on.
  11. Q

    Solved Message no record found

    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.
  12. Q

    Solved Dater ange

    I solved it. it shoul be like this IIf(Year(Min([EnterDate]))=Year(Max([EnterDate])),Year(Max([EnterDate])),Year(Min([EnterDate])) & "-" & Year(Max([EnterDate]))). need to switch year and min. thanks
  13. Q

    Solved Dater ange

    Report is based on query. expression =Min(DatePart("yyyy";[EnterDate])) & "-" & Max(DatePart("yyyy";[EnterDate])) is written in the control source
  14. Q

    Solved Dater ange

    now with correction do not except it all.
  15. Q

    Solved Dater ange

    I got message wrong number of arguments.
Back
Top Bottom