Recent content by Xilo

  1. X

    Filling textboxes in the header of a report from a form with variables

    Thanks Guys! I got it to work with OpenArgs just had to change some smaller things in the other forms that i befor tought werent possible to change,
  2. X

    Filling textboxes in the header of a report from a form with variables

    Im sorry I am by far not an expert. So what exactly do you mean with joining them in the record source query? My query so far is: SELECT Hauptliste.* FROM Hauptliste " & "WHERE (([Hauptliste].[" & aktionsauswahl & "] Not In (0))) I would need to add the Fields Aktion and Lehrer form the Table...
  3. X

    Filling textboxes in the header of a report from a form with variables

    The fields arent part of the recordsource because the header fields would be filled from a diffrent table then the detail fields. I tried DLookUp and can get the string i want but i am not able to put the string in to the textfield. Do you have an example of how i could put the strings into...
  4. X

    Filling textboxes in the header of a report from a form with variables

    Hello, I want to set some textboxes of a report in its header from the selected thing in a combobox So far I have this code to Open a premade Report and filling the detail part of the Report. Private Sub openvorlage_Click() Dim aktionsauswahl As String aktionsauswahl =...
Top Bottom