Search results

  1. 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...
  2. 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...
  3. 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...
  4. zelarra821

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

    Ok, thanks a lot. Now it works. Good night.
  5. 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.
  6. zelarra821

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

    I'm so sorry, but I don't get it works. Could you send the database you are using to test it? Thanks
  7. zelarra821

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

    I agree. I agree. Therefore, I'm going to forget about this function and use the one you created: GetFilterFromCombo_ListBox. Now, I can't get it to return the selected values in the list box. I agree, but first I will have to obtain the filter, for which I am going to use your function...
  8. zelarra821

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

    OK. I have joined the filters. This is how it turned out: Private Sub CmdVerInforme_Click() Dim strFilter As String If Not IsNull(Me.txtDesdeF) And Not IsNull(Me.txtHastaF) Then strFilter = GetBetweenFilter(Me.txtDesdeF, Me.txtHastaF, "Fecha") Else MsgBox "Es...
  9. zelarra821

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

    Sure, but that's the problem, that it is counting zero when there are selected criteria.
  10. zelarra821

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

    Hello. I just realized that yes, I have fixed the issue of showing selected items in the list box. However, when I want to create the report, it is not catching the filter correctly. Here: Private Sub CmdVerInforme_Click() Dim strFilter As String Dim strArgumento As String...
  11. zelarra821

    Filter mail in Outlook

    Doesn't nobody know how to help me? Please, I need to solve this problem.
  12. zelarra821

    Display a specified number of records in a continuous form

    That's ok for me. Thanks.
  13. zelarra821

    Display a specified number of records in a continuous form

    I must be doing something wrong that I get an error. Here the database
  14. zelarra821

    Display a specified number of records in a continuous form

    I just saw the operation itself. I want to have all the records available and to see the last three. Now I only have the ones I marked in the drop-down menu, in this case, three, so to see all of them, I have to mark them in the drop-down menu. No, this is not what I was looking for. Is what I...
  15. zelarra821

    Display a specified number of records in a continuous form

    Well yes, it interests me and helps me achieve what I want. Just a very small detail: when you reach the last field of the record in question, it takes you to the first record of the number that you have selected in the drop-down menu. The natural behavior would be to move to the next record...
  16. zelarra821

    Display a specified number of records in a continuous form

    I mean: Go to record = all record - 3, for example, when you finish a new record or update an existing record. TThanks to all.
  17. zelarra821

    Display a specified number of records in a continuous form

    Hello people. Let's see if you can help me. I attach a database where I have put the code DoCmd.GoToRecord , , acLast in the Form_Load event. When I enter the form, it appears like this: That is, it shows me only one record, because it is the last one. Now, here I pose two questions...
  18. zelarra821

    Filter mail in Outlook

    Hi, guys. I need your help. I've been using Outlook for several months, but I can't get it to work as I would like. I wanted to ask for help to try to achieve this. The fact is that I have created a series of rules to move emails to folders. What is the problem? I no longer get this message in...
  19. zelarra821

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

    Private Sub SelectFiltered() Dim lstFilter As Listbox Dim lstSelect As Listbox Dim I As Integer Dim j As Integer Dim ID As Long Set lstFilter = Me.LstCriterios Set lstSelect = Me.LstCriteriosAsignados On Error GoTo Err_lbl Echo False For I = 0 To lstFilter.ListCount -...
Back
Top Bottom