Recent content by TheSearcher

  1. T

    Dynamically Change Recordsource of a Subreport

    I succeeded by placing the code in the "On Activate" event of the parent report.
  2. T

    Dynamically Change Recordsource of a Subreport

    If txt_Sex on Main Report = "M" then I want the recordsource of Subreport1 to be q_Male else q_Female. If Parent!txt_Sex = "M" Then Me.RecordSource = q_Male Else Me.RecordSource = q_Female End If Is this the correct code? Do I place it in the subreport? If so, on which event? Any...
  3. T

    ListBox Doesn't Show Selected Values

    Good advice as always. I will do that. The problem was in my Insert query. A space where it shouldn't be. For Each varitm In lst_Modalities.ItemsSelected sql1 = "Insert into tbl_Note_ST_DDD_Modalities (Note_Id, Client_Id, Client_Name, Modalities) " sql1 = sql1 & "select " &...
  4. T

    ListBox Doesn't Show Selected Values

    @MajP - As you suspected, there was a space at the end of the strings. That's why it wasn't working. All is good now. Thank you very much for your help!
  5. T

    ListBox Doesn't Show Selected Values

    @MajP - Thank you for your help. I will try everything you suggested. I just reran the code. The code seems to be looping as it should but the matches don't get selected. There are 18 options and two that have been selected. See below. List Value: Tactile selection Seleced: Tactile selection...
  6. T

    ListBox Doesn't Show Selected Values

    Correction - The NEXT is working. It sems to be the rs.movenext that's the issue.
  7. T

    ListBox Doesn't Show Selected Values

    @MajP - 2 problems: The first match "Referential signaling" doesn't get sent to True. The second issue is that "Referential signaling" is one of 18 possible options - but it never gets to any of the other options. It appears as though the NEXT isn't working. List Value: Referential...
  8. T

    ListBox Doesn't Show Selected Values

    Hi All, I use the following code in many different applications to display what has already been selected from a listbox while opening a form. It always works perfectly. However, in this particular instance, all listbox values remain unselected. This code is on the On Open event of my form. Can...
  9. T

    Baffled by Time

    Ron Paii - You are the man!!! Works perfectly! Thank you!!!
  10. T

    Baffled by Time

    Thank you. Much needed article! So, the Start_Time and End_Time displayed in the snapshot of my table above is not an accurate representation of the data stored in that field. That's just wonderful! Is there anyway to get Access to display what is truly stored in the fields? This would be very...
  11. T

    Baffled by Time

    My table looks like this. Start_Time and End_Time are both Date/Time fields set to a Long Time format. The data in my table looks like this. TherapistTheDateStart_TimeEnd_TimeClient_NameClient_IdUID Jane Smith10/28/20258:30:00 AM9:30:00 AMDebbie Jones600123560 In Query...
  12. T

    Report Dilemma

    Great points. Thanks everyone. I will check all of that.
  13. T

    Report Dilemma

    Yes. Everyone is connected to a different printer. They are in different cities in 3 different states. The odd thing is that this application has been in production for about 3 years and the issue just started occurring this week. I will compare printer settings. Thank you.
  14. T

    Report Dilemma

    I have a split database. The front end is distributed to about 150 people. Everything has been working as it should. However, this week I have 2 users who are getting the "The section width is greater than the page width" error when opening/printing a specific report. The report will have 4...
  15. T

    50/50 Chance of Working

    Nevermind. I was including labels in the ctl.
Back
Top Bottom