Recent content by zelarra821

  1. zelarra821

    Solved Error with Input Mask

    Thanks, June7
  2. zelarra821

    Solved Error with Input Mask

    It's possible to do what I want if you use this input mask: and then you insert this code: 9999/9999;0;_ (9 is optional and 0 is required). Private Sub Temporada_AfterUpdate() If IsNumeric(Left(Me.Temporada, 4)) And Right(Me.Temporada, 1) = "/" And Len(Me.Temporada) = 5 Then...
  3. zelarra821

    Solved Error with Input Mask

    It seems good, but it should be able to add a entire season (2024/2025) as only 2024 y fill it to 2024/2025.
  4. zelarra821

    Solved Error with Input Mask

    It must be two years, like football season. I don't know if you understand me.
  5. zelarra821

    Solved Error with Input Mask

    Hi guys. I am attaching an example database on which I am going to explain what I want to achieve. I have the Season field, to which I have an input mask: 0000/0000;0;_ The user must enter the season in this way: 2024/2025, and if he enters it in another way, he must give an error, hence he...
  6. zelarra821

    Change the origin of multiple subreports in the same report

    Sorry. I have alreday seen your post. That's what I looking for. Thanks a lot.
  7. zelarra821

    Change the origin of multiple subreports in the same report

    I'm sorry. My idea is add all the subreports to the main report and link them to the main report. I mean that all that subreports will have the same source.
  8. zelarra821

    Change the origin of multiple subreports in the same report

    The list box refers to farms. This database is to run an olive grove management company. Therefore, the user will enter expenses and income for each of the farms. Hence the list box, to filter by the properties. Then, the PrincipalId refers to the categories it may have: inputs, hourly work...
  9. zelarra821

    Change the origin of multiple subreports in the same report

    Hello, thank you very much for contributing. I tell you. It's not your fault, but mine, for not translating the database, but a hell of a job. Anyway, you have used the dialog to open the report. In this you have added a Select Case for LstFincasAsignadas. However, the values in this list box...
  10. zelarra821

    Change the origin of multiple subreports in the same report

    Hi. Thanks for the answer. I added a textbox using IDPrincipal as a Control Source in main report and all the subreports, but it doesn't work. I tested Select Case in on format event of detail section and on load of main report but I don't even get it to work. So, if someone could give some...
  11. zelarra821

    Change the origin of multiple subreports in the same report

    Hello. I need your help. I need to create a report with multiple subreports, but have the source of these subreports dynamically set to a value. Let's see if I can explain it, because with what I've told you so far I'm sure your brain has exploded. The report I need to create is a balance...
  12. zelarra821

    Button to Select All and Delete selected items in a List Box

    Ok, thanks a lot. Now it works. Good night.
  13. zelarra821

    Button to Select All and Delete selected items in a List Box

    I recorded a video, cause you have reason and me too. If you don't use the combo to filter the listobox, it works, but when you use it, the filter doesn't work. Look at the video what I mean. Thanks.
Top Bottom